-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGlobal.props
33 lines (30 loc) · 1.41 KB
/
Global.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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<VersionPrefix>0.1.0</VersionPrefix>
<Product>PAM bindings for .NET</Product>
<Copyright>Fubar Development Junker 2019</Copyright>
<Company>Fubar Development Junker</Company>
<Authors>Fubar Development Junker</Authors>
<PackageProjectUrl>https://github.com/FubarDevelopment/PamSharp</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>https://github.com/FubarDevelopment/PamSharp/releases</PackageReleaseNotes>
<RepositoryUrl>https://github.com/FubarDevelopment/PamSharp.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<MinClientVersion>3.5</MinClientVersion>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)FubarDev.PamSharp.ruleset</CodeAnalysisRuleSet>
<NoWarn>SA1636;SA1641;$(NoWarn)</NoWarn>
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" Link="stylecop.json" Visible="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>