-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathDirectory.Build.props
21 lines (21 loc) · 1.02 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version>6.1.0</Version>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>preview</LangVersion>
<DebugType>full</DebugType>
<Description>Simplifies logging through a static helper class and some IL manipulation.</Description>
<PackageTags>Logging, ILWeaving, Fody, Cecil</PackageTags>
<AssemblyOriginatorKeyFile>$(SolutionDir)key.snk</AssemblyOriginatorKeyFile>
<NoWarn>NU5118;NU1903</NoWarn>
<PackageOutputPath>$(SolutionDir)nugets</PackageOutputPath>
<PackageIconUrl>https://raw.githubusercontent.com/Fody/Anotar/master/package_icon.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/Fody/Anotar</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<ResolveAssemblyReferencesSilent>true</ResolveAssemblyReferencesSilent>
<NuGetAuditMode>all</NuGetAuditMode>
<NuGetAuditLevel>low</NuGetAuditLevel>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>