-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathcommon.props
More file actions
52 lines (52 loc) · 3.13 KB
/
Copy pathcommon.props
File metadata and controls
52 lines (52 loc) · 3.13 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project>
<PropertyGroup>
<Copyright>Copyright © 2015-2020 Petabridge</Copyright>
<Authors>Petabridge</Authors>
<VersionPrefix>2.0.1</VersionPrefix>
<PackageReleaseNotes>NBench 2.0.0 is a major departure from NBench 1.2 and preceding versions, and these changes were done in order to support NBench's future as a cutting-edge, cross-platform performance testing and macro benchmarking framework:
- `dotnet nbench` and `NBench.Runner` are both now deprecated - [NBench is now run from directly inside a console application created by end-users](https://nbench.io/articles/quickstart.html). This makes it easier to configure, debug, and create benchmarks on new .NET Core platforms without having to wait for additional instrumentation or tooling from NBench itself.
- NBench no longer supports .NET Framework explicitly; moving forward NBench will only support .NET Standard 2.0 and later (.NET Framework 4.6.1 and greater or .NET Core 2.0 and greater.)
- We've added a new documentation website for NBench: https://nbench.io/
- NBench now supports configuration as code through the [`TestPackage` class](https://nbench.io/api/NBench.Sdk.TestPackage.html).
For a full set of changes, [please see the NBench 2.0.0 milestone on Github](https://github.com/petabridge/NBench/milestone/3).
---
2.0.1 Notes:
Fixed error with setting thread priority on Linux;
Fixed NuGet symbol publication;
And more.
For a full set of changes, [please see the NBench 2.0.1 milestone on Github](https://github.com/petabridge/NBench/milestone/8).</PackageReleaseNotes>
<PackageProjectUrl>
https://nbench.io/
</PackageProjectUrl>
<PackageLicenseUrl>
https://github.com/petabridge/NBench/blob/dev/LICENSE
</PackageLicenseUrl>
<PackageTags>performance;benchmarking;benchmark;perf;testing;NBench</PackageTags>
<NoWarn>$(NoWarn);CS1591;</NoWarn>
<PackageIconUrl>https://github.com/petabridge/NBench/raw/dev/images/NBench_logo_square_140.png</PackageIconUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/petabridge/NBench</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<ApprovalTestsVersion>5.4.2</ApprovalTestsVersion>
<XunitVersion>2.4.1</XunitVersion>
<TestSdkVersion>16.8.0</TestSdkVersion>
<FluentAssertionsVersion>5.10.2</FluentAssertionsVersion>
</PropertyGroup>
<PropertyGroup>
<NetCoreTestVersion>netcoreapp3.1</NetCoreTestVersion>
<NetStandardLibVersion>netstandard2.0</NetStandardLibVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.0" PrivateAssets="All" />
</ItemGroup>
</Project>