- Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathUtilities.csproj
25 lines (20 loc) · 800 Bytes
/
Utilities.csproj
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
<ProjectSdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<CodeAnalysisRuleSet>..\stylecop.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroupCondition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>./bin/Utilities.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<AdditionalFilesInclude="..\stylecop.json" />
</ItemGroup>
<ItemGroup>
<PackageReferenceInclude="StyleCop.Analyzers"Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>