forked from dotnet/corefx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
21 lines (19 loc) · 1.09 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\Directory.Build.props" />
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
<DisableImplicitFrameworkDefines>true</DisableImplicitFrameworkDefines>
<DisableImplicitConfigurationDefines>true</DisableImplicitConfigurationDefines>
<!-- Disable code paths that require project.assets.json files to be present or to be computed. -->
<GenerateDependencyFile>false</GenerateDependencyFile>
<ComputeNETCoreBuildOutputFiles>false</ComputeNETCoreBuildOutputFiles>
<GenerateRuntimeConfigurationFiles>false</GenerateRuntimeConfigurationFiles>
<!--
The Microsoft.NET.Sdk defaults the AssemblySearchPaths earlier than buildtools, so default
the correct search paths here. We are rather restrictive by design - only ref assemblies should
be resolved by default.
-->
<AssemblySearchPaths>$(AssemblySearchPaths);$(RefPath);{RawFileName}</AssemblySearchPaths>
</PropertyGroup>
</Project>