-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathDirectory.Build.props
23 lines (22 loc) · 975 Bytes
/
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
<Project>
<PropertyGroup Label="C#">
<LangVersion>12.0</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Nullable>enable</Nullable>
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
<Authors>Derrick Timmermans</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/LumpBloom7/sentakki</RepositoryUrl>
<Copyright>Copyright (c) 2024 Derrick Timmermans</Copyright>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\**\*"/>
</ItemGroup>
<ItemGroup>
<EditorConfgFiles Include=".editorconfig"/>
<EditorConfgFiles Include=".globalconfig"/>
</ItemGroup>
</Project>