-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (27 loc) · 1.05 KB
/
Copy pathDirectory.Build.props
File metadata and controls
30 lines (27 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project>
<PropertyGroup>
<ProduceReferenceAssembly Condition="'$(ProduceReferenceAssembly)' == ''">true</ProduceReferenceAssembly>
<PublishOnBuild Condition="'$(PublishOnBuild)' == ''">true</PublishOnBuild>
<OutDir>$(MSBuildThisFileDirectory)bin\</OutDir>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)WebApp.props" Condition="'$(UsingMSBuildSDKSystemWeb)' == true" />
<Import Project="$(MSBuildThisFileDirectory)AspNetCompiler.props" Condition="'$(UsingMicrosoftNoTargetsSdk)' == true" />
<ItemDefinitionGroup>
<Compile>
<Watch>False</Watch>
</Compile>
<EmbeddedResource>
<Watch>False</Watch>
</EmbeddedResource>
</ItemDefinitionGroup>
<Target Name="UnwatchProjectFile" AfterTargets="_CoreCollectWatchItems">
<ItemGroup>
<Watch Remove="$(MSBuildProjectFullPath)" />
</ItemGroup>
</Target>
<Target Name="_AspNetCustomCollectWatchItems" BeforeTargets="_CoreCollectWatchItems">
<ItemGroup>
<Watch Include="%(Content.FullPath)" />
</ItemGroup>
</Target>
</Project>