-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
38 lines (33 loc) · 1.54 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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<AnalysisLevel>latest-Recommended</AnalysisLevel>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Authors>Kotz</Authors>
<Copyright>Copyright © Kotz 2022</Copyright>
<PackageProjectUrl>https://github.com/Kaoticz/Kotz.Utilities</PackageProjectUrl>
<RepositoryUrl>https://github.com/Kaoticz/Kotz.Utilities</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>library;utility;utilities</PackageTags>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>Avatar.png</PackageIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Kotz.Tests" />
<None Include="..\Avatar.png" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>