|
| 1 | +<!-- Top level Directory.Build.props --> |
1 | 2 | <Project>
|
2 | 3 |
|
3 | 4 | <PropertyGroup>
|
4 |
| - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 5 | + <!-- Compile and Build Settings --> |
5 | 6 | <LangVersion>12</LangVersion>
|
| 7 | + <Features>strict</Features> |
| 8 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 9 | + <Version Condition="'$(Version)'==''">4.0.0.0</Version> |
| 10 | + <OutputPath>$(MSBuildThisFileDirectory)\..\bin\$(Configuration)\</OutputPath> |
| 11 | + <CheckEolTargetFramework>false</CheckEolTargetFramework> |
| 12 | + <RollForward>Major</RollForward> |
6 | 13 | <DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
|
7 | 14 | <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
| 15 | + <!-- Signing Assemblies --> |
| 16 | + <SignAssembly>true</SignAssembly> |
| 17 | + <AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/nunit.snk</AssemblyOriginatorKeyFile> |
| 18 | + <!-- Debugging --> |
| 19 | + <DebugType>portable</DebugType> |
| 20 | + <DebugSymbols>true</DebugSymbols> |
| 21 | + <!-- Commonly Used Package Versions --> |
| 22 | + <AnnotatedReferenceAssemblyVersion>8.0.0</AnnotatedReferenceAssemblyVersion> |
| 23 | + <!-- Informatinal Settings --> |
8 | 24 | <Company>NUnit Software</Company>
|
| 25 | + <Product>NUnit 4 Runner and Engine</Product> |
9 | 26 | <Copyright>Copyright (c) 2022 Charlie Poole, Rob Prouse</Copyright>
|
10 |
| - <CheckEolTargetFramework>false</CheckEolTargetFramework> |
11 |
| - </PropertyGroup> |
12 |
| - |
13 |
| - <PropertyGroup Condition="'$(Version)'==''"> |
14 |
| - <AssemblyVersion>3.99.0.0</AssemblyVersion> |
15 |
| - <FileVersion>3.99.0.0</FileVersion> |
16 |
| - <InformationalVersion>3.99.0.0-VSIDE</InformationalVersion> |
| 27 | + <Trademark>NUnit is a trademark of NUnit Software</Trademark> |
| 28 | + <!-- Keys for Friend Assemblies --> |
| 29 | + <NUnitPublicKey>002400000480000094000000060200000024000052534131000400000100010031eea370b1984bfa6d1ea760e1ca6065cee41a1a279ca234933fe977a096222c0e14f9e5a17d5689305c6d7f1206a85a53c48ca010080799d6eeef61c98abd18767827dc05daea6b6fbd2e868410d9bee5e972a004ddd692dec8fa404ba4591e847a8cf35de21c2d3723bc8d775a66b594adeb967537729fe2a446b548cd57a6</NUnitPublicKey> |
| 30 | + <NSubstitutePublicKey>0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7</NSubstitutePublicKey> |
17 | 31 | </PropertyGroup>
|
18 | 32 |
|
19 | 33 | </Project>
|
0 commit comments