forked from dotnet/project-system
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.targets
26 lines (23 loc) · 1.13 KB
/
Directory.Build.targets
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
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE.md file in the project root for more information. -->
<Project>
<Import Project="build\import\Packages.targets"/>
<Import Project="build\import\Workarounds.targets"/>
<Import Project="build\import\Stubs.targets" />
<Import Project="$(RepoToolsetDir)Imports.targets" Condition="'$(ExcludeRestorePackageImports)' != 'true' AND Exists('$(RepoToolsetDir)Imports.targets')" />
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)\src\Common\BannedSymbols.txt" Condition="'$(BannedSymbolsOptOut)' != 'true'" />
</ItemGroup>
<!--
With UseCommonOutputDirectory turned on, any copy-local projects/references break
csproj's up-to-date check because they aren't copied to the output directory.
Turn it off.
-->
<ItemDefinitionGroup Condition="'$(UseCommonOutputDirectory)' == 'true'">
<Reference>
<Private>false</Private>
</Reference>
<ProjectReference>
<Private>false</Private>
</ProjectReference>
</ItemDefinitionGroup>
</Project>