-
Notifications
You must be signed in to change notification settings - Fork 7
/
Directory.Build.props
58 lines (57 loc) · 2.7 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project>
<PropertyGroup>
<ArtifactsDirectory>$(MSBuildThisFileDirectory)artifacts</ArtifactsDirectory>
<_ProjectArtifactsDirectory>$(ArtifactsDirectory)\$(MSBuildProjectName)\</_ProjectArtifactsDirectory>
<BaseIntermediateOutputPath>$(_ProjectArtifactsDirectory)obj\</BaseIntermediateOutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
<BaseOutputPath>$(_ProjectArtifactsDirectory)bin\</BaseOutputPath>
<OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<LangVersion>12.0</LangVersion>
<TargetFramework>net8.0</TargetFramework>
<StartDevelopmentStorage>False</StartDevelopmentStorage>
<WarningsAsErrors>true</WarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<!-- Workaround: https://github.com/dotnet/roslyn/issues/41640 -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591;CS1573</NoWarn>
</PropertyGroup>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Collections.Concurrent" />
<Using Include="System.Data" />
<Using Include="System.Diagnostics.CodeAnalysis" />
<Using Include="System.Diagnostics" />
<Using Include="System.Globalization" />
<Using Include="System.Linq.Expressions" />
<Using Include="System.Net.Http.Headers" />
<Using Include="System.Net" />
<Using Include="System.Reflection" />
<Using Include="System.Text.Json.Serialization.Metadata" />
<Using Include="System.Text.Json.Serialization" />
<Using Include="System.Text.Json" />
<Using Include="System.Text" />
<Using Include="Microsoft.Extensions.DependencyInjection" />
<Using Include="Microsoft.Extensions.Logging.Abstractions" />
<Using Include="Microsoft.Extensions.Logging" />
<Using Include="Microsoft.Extensions.Options" />
<Using Include="NuGet.Versioning" />
</ItemGroup>
<PropertyGroup>
<EnableNPE Condition="'$(EnableNPE)' == '' and $([MSBuild]::IsOSPlatform('Windows'))">true</EnableNPE>
<EnableNPE Condition="'$(EnableNPE)' == ''">false</EnableNPE>
<EnableCryptoAPI Condition="'$(EnableCryptoAPI)' == '' and $([MSBuild]::IsOSPlatform('Windows'))">true</EnableCryptoAPI>
<EnableCryptoAPI Condition="'$(EnableCryptoAPI)' == ''">false</EnableCryptoAPI>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>$(AssemblyName).Test</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<RuntimeHostConfigurationOption Include="System.Globalization.UseNls" Value="true" />
</ItemGroup>
</Project>