-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
34 lines (26 loc) · 1.11 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
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<!-- For .NET 9 -->
<LangVersion>13.0</LangVersion>
<!-- NuGet -->
<Version>3.1.4</Version>
<AssemblyVersion>3.1.0</AssemblyVersion>
<FileVersion>3.1.0</FileVersion>
<Authors>Jon Sagara</Authors>
<Copyright>Copyright 2022-2024</Copyright>
<RepositoryUrl>https://github.com/jonsagara/Sagara.Core</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/jonsagara/Sagara.Core</PackageProjectUrl>
<!-- Code Analysis -->
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<WarningsAsErrors>$(WarningsAsErrors);CA1307;CA1309;CA1310</WarningsAsErrors>
<!-- Don't warn about public members with missing XML comments. -->
<NoWarn>1591;1701;1702</NoWarn>
<!--
This is really helpful for larger projects, but I leave it in anyway. Why build if you don't have to?
See: https://devblogs.microsoft.com/visualstudio/vs-toolbox-accelerate-your-builds-of-sdk-style-net-projects/
-->
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
</PropertyGroup>
</Project>