|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | | - <Import Project="../SharedProjectInfo.props" /> |
| 2 | + <Import Project="../SharedPackageInfo.props" /> |
| 3 | + |
| 4 | + <PropertyGroup> |
| 5 | + <Description>The library for writing tests in BDD and AAA styles</Description> |
| 6 | + <PackageTags>Heleonix test nunit bdd behavior driven development tdd test driven development aaa arrange act assert</PackageTags> |
| 7 | + <PackageReleaseNotes> |
| 8 | + Configured the package as non-development dependency. |
| 9 | + </PackageReleaseNotes> |
| 10 | + </PropertyGroup> |
3 | 11 |
|
4 | 12 | <PropertyGroup> |
5 | 13 | <TargetFramework>netstandard2.0</TargetFramework> |
6 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
7 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
8 | 14 | <GenerateDocumentationFile>True</GenerateDocumentationFile> |
9 | 15 | </PropertyGroup> |
10 | 16 |
|
11 | 17 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 18 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
12 | 19 | <DebugType>full</DebugType> |
13 | 20 | <DebugSymbols>true</DebugSymbols> |
14 | | - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
15 | | - <WarningsAsErrors /> |
16 | 21 | </PropertyGroup> |
17 | 22 |
|
18 | 23 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 24 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
19 | 25 | <DebugType>pdbonly</DebugType> |
20 | 26 | <DebugSymbols>true</DebugSymbols> |
21 | | - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
22 | | - <WarningsAsErrors /> |
23 | | - </PropertyGroup> |
24 | | - |
25 | | - <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'"> |
26 | | - <LangVersion>default</LangVersion> |
27 | | - </PropertyGroup> |
28 | | - |
29 | | - <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'"> |
30 | | - <LangVersion>default</LangVersion> |
31 | 27 | </PropertyGroup> |
32 | 28 |
|
33 | 29 | <ItemGroup> |
34 | 30 | <AdditionalFiles Include="..\stylecop.json" Link="stylecop.json" /> |
35 | 31 | </ItemGroup> |
36 | 32 |
|
37 | 33 | <ItemGroup> |
38 | | - <None Include="..\README.md"> |
39 | | - <Pack>True</Pack> |
40 | | - <PackagePath>\</PackagePath> |
41 | | - </None> |
42 | | - </ItemGroup> |
43 | | - |
44 | | - <ItemGroup> |
45 | | - <PackageReference Include="codecracker.CSharp" Version="1.1.0" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers" /> |
| 34 | + <PackageReference Include="codecracker.CSharp" Version="1.1.0"> |
| 35 | + <PrivateAssets>all</PrivateAssets> |
| 36 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 37 | + </PackageReference> |
46 | 38 | <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0"> |
47 | 39 | <PrivateAssets>all</PrivateAssets> |
48 | 40 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
51 | 43 | <PrivateAssets>all</PrivateAssets> |
52 | 44 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
53 | 45 | </PackageReference> |
54 | | - <PackageReference Include="SonarAnalyzer.CSharp" Version="8.45.0.54064" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers" /> |
55 | | - <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers" /> |
| 46 | + <PackageReference Include="SonarAnalyzer.CSharp" Version="8.46.0.54807"> |
| 47 | + <PrivateAssets>all</PrivateAssets> |
| 48 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 49 | + </PackageReference> |
| 50 | + <PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> |
| 51 | + <PrivateAssets>all</PrivateAssets> |
| 52 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 53 | + </PackageReference> |
56 | 54 | </ItemGroup> |
57 | 55 |
|
58 | 56 | <ItemGroup> |
|
0 commit comments