-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (21 loc) · 870 Bytes
/
Directory.Build.props
File metadata and controls
23 lines (21 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<PropertyGroup Label="Custom properties">
<DefaultTargetFramework>net8.0</DefaultTargetFramework>
<SolutionNamespace>Controk</SolutionNamespace>
</PropertyGroup>
<PropertyGroup Label="Default configuration">
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<Company>Controk</Company>
<Copyright>© Controk. All rights reserved.</Copyright>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup Label="Default analyzers">
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>