-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
40 lines (34 loc) · 1.07 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
<Project>
<!-- Version -->
<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix>rc</VersionSuffix>
</PropertyGroup>
<!-- .NET -->
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<NoWarn>$(NoWarn);CS1591;</NoWarn>
</PropertyGroup>
<!-- Suppressed Warnings -->
<PropertyGroup>
<!--
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
-->
<NoWarn>
$(NoWarn);
CS1591;
</NoWarn>
</PropertyGroup>
<!-- Packaging -->
<PropertyGroup Condition="$(MSBuildProjectDirectory.Contains('src')) == 'false'">
<IsPackable>false</IsPackable>
</PropertyGroup>
<!-- Code Coverage -->
<ItemGroup Condition="$(MSBuildProjectDirectory.Contains('src')) == 'false'">
<AssemblyAttribute Include="System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage" />
</ItemGroup>
</Project>