-
Notifications
You must be signed in to change notification settings - Fork 25
/
Directory.Build.props
32 lines (28 loc) · 1.16 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Authors>Amadeusz Sadowski and contributors</Authors>
<Company>BSData</Company>
<Copyright>Copyright © $(Authors)</Copyright>
<IsPackable>false</IsPackable>
<CommonTargetFramework>net8.0</CommonTargetFramework>
<VersionPrefix>1.2.0</VersionPrefix>
<EnforceCodeStyleOnBuild>true</EnforceCodeStyleOnBuild>
<AnalysisMode>Recommended</AnalysisMode>
<!-- Uncomment for debugging blazor/razor generated sources -->
<!-- <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> -->
<!-- Put stuff into a common directory -->
<UseArtifactsOutput>true</UseArtifactsOutput>
<!-- Don't warn on API docs -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
<!-- Don't warn on Type can be sealed -->
<NoWarn>$(NoWarn);CA1852</NoWarn>
<!-- Error out on warnings when releasing -->
<TreatWarningsAsErrors Condition=" '$(Configuration)' == 'Release' ">true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Collections.Immutable" />
</ItemGroup>
</Project>