-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeStyle.csproj
More file actions
25 lines (25 loc) · 1.37 KB
/
CodeStyle.csproj
File metadata and controls
25 lines (25 loc) · 1.37 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<Version>1.1.0</Version>
<PackageId>Polyadic.CodeStyle</PackageId>
<PackageTags>analyzers</PackageTags>
<Description>Various analyzers bundled with opinionated configuration</Description>
<NoWarn>$(NoWarn);NU5104;NU5128</NoWarn>
<!-- NU5104: A stable release of a package should not have a prerelease dependency.
See https://docs.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu5104 -->
<!-- NU5128: Some target frameworks declared in the dependencies group of the nuspec and the lib/ref folder do not have exact matches in the other location.
See https://docs.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu5128 -->
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IDisposableAnalyzers" Version="4.0.8" PrivateAssets="none" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556" PrivateAssets="none" />
</ItemGroup>
<ItemGroup>
<None Include="build\**\*" Pack="true" PackagePath="%(Identity)" />
<None Include="buildMultiTargeting\**\*" Pack="true" PackagePath="%(Identity)" />
</ItemGroup>
</Project>