-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
22 lines (22 loc) · 1.08 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
22
<Project>
<PropertyGroup>
<!--
The compiler accepts syntax from the latest released version of the compiler (including minor version).
See: https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/language#langversion
-->
<LangVersion>latest</LangVersion>
<!--
Use the faster NuGet package restore algorithm.
This value will be 'true' by default in upcoming NuGet releases.
See: https://github.com/NuGet/Home/issues/8791
-->
<RestoreUseStaticGraphEvaluation>true</RestoreUseStaticGraphEvaluation>
<!--
Prevent Visual Studio IncrementalClean from deleting transitively-acquired content.
This is an unexpected behavior and is different from what dotnet.exe build does.
This value will be 'true' by default in upcoming MSBuild versions.
See: https://github.com/dotnet/msbuild/issues/1054#issuecomment-847959047
-->
<MSBuildCopyContentTransitively>true</MSBuildCopyContentTransitively>
</PropertyGroup>
</Project>