-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
44 lines (38 loc) · 1.57 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
<Project>
<!-- Project -->
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>12</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<!-- Documentation -->
<PropertyGroup Condition="$(Configuration) == 'Debug'">
<NoWarn>CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- Analyzer -->
<PropertyGroup>
<AnalysisLevel>8.0</AnalysisLevel>
<AnalysisMode>Recommended</AnalysisMode>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<!-- Global Packages -->
<ItemGroup>
<PackageReference Include="SonarAnalyzer.CSharp" Condition=" '$(MSBuildProjectExtension)' == '.csproj' ">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<!-- Assembly Meta -->
<PropertyGroup>
<Authors>Alisa</Authors>
<Copyright>Copyright © 2024 Alisa and Contributors.</Copyright>
<Description>A CLI tool to use RCON, a game server management protocol.</Description>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/LiamSho/RconCli</RepositoryUrl>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
</Project>