-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
18 lines (16 loc) · 869 Bytes
/
Directory.Build.props
File metadata and controls
18 lines (16 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)stylecop.ruleset</CodeAnalysisRuleSet>
<PackageProjectUrl>https://github.com/Deffiss/testenvironment-docker</PackageProjectUrl>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/Deffiss/testenvironment-docker</RepositoryUrl>
<LangVersion>Latest</LangVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)\stylecop.json" Link="stylecop.json" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.333" ExcludeAssets="All" PrivateAssets="All" />
</ItemGroup>
</Project>