-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (24 loc) · 970 Bytes
/
Directory.Build.props
File metadata and controls
25 lines (24 loc) · 970 Bytes
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
<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>
<!-- Put stuff into a common directory -->
<UseArtifactsOutput>true</UseArtifactsOutput>
<!-- Don't warn on API docs -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
<!-- Error out on warnings when releasing -->
<MSBuildTreatWarningsAsErrors Condition=" '$(Configuration)' == 'Release' ">true</MSBuildTreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Collections.Immutable" />
</ItemGroup>
</Project>