-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (19 loc) · 964 Bytes
/
Directory.Build.props
File metadata and controls
20 lines (19 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<!--
Use latest C# version available with the current .NET SDK.
https://learn.microsoft.com/dotnet/csharp/language-reference/configure-language-version
-->
<LangVersion>latestMajor</LangVersion>
<!--
Place all build outputs in the root of the repository instead of nested project directories to
- speed up git clean operations,
- reduce the number of files to be signed by the official builds,
- detect transitive dependency conflicts as double-writes in the MSBuild structured .binlog.
-->
<BaseOutputPath>$(MSBuildThisFileDirectory)bin\</BaseOutputPath>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<VSTestResultsDirectory>$(MSBuildThisFileDirectory)out\tests\</VSTestResultsDirectory>
<PackageOutputPath>$(MSBuildThisFileDirectory)out\packages\</PackageOutputPath>
</PropertyGroup>
</Project>