forked from dotnet/project-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.targets
26 lines (23 loc) · 1.09 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
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license 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>