|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 | 2 | <Project Sdk="Microsoft.Build.NoTargets">
|
3 | 3 | <PropertyGroup>
|
4 |
| - <Version>1.0.0-alpha.1</Version> |
| 4 | + <Version>1.0.0</Version> |
5 | 5 | <RepositoryUrl>https://github.com/messerli-informatik-ag/code-style</RepositoryUrl>
|
6 | 6 | <RepositoryType>git</RepositoryType>
|
7 | 7 | <PackageId>Messerli.CodeStyle</PackageId>
|
8 | 8 | <PackageTags>analyzers</PackageTags>
|
9 | 9 | <PackageLicenseExpression>MIT OR Apache-2.0</PackageLicenseExpression>
|
10 | 10 | <Copyright>© Messerli Informatik AG. All rights reserved.</Copyright>
|
11 | 11 | <Description>Various analyzers bundled with opinionated configuration</Description>
|
12 |
| - <NoWarn>$(NoWarn);NU5105</NoWarn> |
13 |
| - <!-- NU5105: The version property specified contains SemVer 2.0.0 components |
| 12 | + <NoWarn>$(NoWarn);NU5105;NU5104;NU5128</NoWarn> |
| 13 | + <!-- NU5105: The version property specified contains SemVer 2.0.0 components. |
14 | 14 | See https://docs.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu5105 -->
|
| 15 | + <!-- NU5104: A stable release of a package should not have a prerelease dependency. |
| 16 | + See https://docs.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu5104 --> |
| 17 | + <!-- 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. |
| 18 | + See https://docs.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu5128 --> |
15 | 19 | </PropertyGroup>
|
16 | 20 | <PropertyGroup>
|
17 |
| - <TargetFramework>netstandard2.1</TargetFramework> |
| 21 | + <TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks> |
18 | 22 | </PropertyGroup>
|
19 | 23 | <ItemGroup>
|
20 | 24 | <PackageReference Include="IDisposableAnalyzers" Version="3.2.0" PrivateAssets="none" />
|
21 | 25 | <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.113" PrivateAssets="none" />
|
22 | 26 | </ItemGroup>
|
23 | 27 | <ItemGroup>
|
24 |
| - <None Include="Config\**\*"> |
| 28 | + <None Include="build\**\*;buildMultiTargeting\**\*"> |
25 | 29 | <Pack>true</Pack>
|
26 |
| - <PackagePath>build\$(TargetFramework)\Config</PackagePath> |
27 |
| - </None> |
28 |
| - <!-- This file is automatically loaded by MSBuild when a project depends on this package using <PackageReference> --> |
29 |
| - <None Include="$(PackageId).targets"> |
30 |
| - <Pack>true</Pack> |
31 |
| - <PackagePath>build\$(TargetFramework)</PackagePath> |
32 |
| - </None> |
33 |
| - <!-- This file makes the nuget package framework dependent --> |
34 |
| - <None Include="lib/_._"> |
35 |
| - <Pack>true</Pack> |
36 |
| - <PackagePath>lib\$(TargetFramework)</PackagePath> |
| 30 | + <PackagePath>%(Identity)</PackagePath> |
37 | 31 | </None>
|
38 | 32 | </ItemGroup>
|
39 | 33 | </Project>
|
0 commit comments