-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDirectory.Build.props
36 lines (32 loc) · 1.43 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
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>true</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<Authors>Rhys Koedijk</Authors>
<Description>Steam Community Market Manager (SCMM)</Description>
<Copyright>Copyright © 2021-2024 Rhys Koedijk</Copyright>
</PropertyGroup>
<!--
Use ReferenceTrimmer to escalate "unnesscary reference" warnings as errors; Reduces project and package bloat.
https://github.com/dfederm/ReferenceTrimmer
-->
<PropertyGroup>
<!-- Generation file must be enabled to get accurate results when using ReferenceTimmer -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Suppress XML doc comment issues to avoid errors when using ReferenceTrimmer -->
<NoWarn>$(NoWarn);CS0419;CS1570;CS1573;CS1574;CS1584;CS1591;CS1658;SA1602</NoWarn>
<!--
Escalate warnings to errors for:
IDE0005: Remove unnecessary using directives
RT0000: Enable documentation generation for accuracy of used references detection
RT0001: Unnecessary reference
RT0002: Unnecessary project reference
RT0003: Unnecessary package reference
-->
<WarningsAsErrors>$(WarningsAsErrors);IDE0005;RT0000;RT0001;RT0002;RT0003</WarningsAsErrors>
<MSBuildWarningsAsErrors>$(WarningsAsErrors)</MSBuildWarningsAsErrors>
</PropertyGroup>
</Project>