-
Notifications
You must be signed in to change notification settings - Fork 46
/
Directory.Build.props
63 lines (57 loc) · 3.5 KB
/
Directory.Build.props
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
53
54
55
56
57
58
59
60
61
62
63
<Project>
<PropertyGroup>
<Copyright>Copyright © 2015-2024 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>6.0.0</ApprovalTestsVersion>
<XunitVersion>2.8.1</XunitVersion>
<TestSdkVersion>16.8.0</TestSdkVersion>
<FluentAssertionsVersion>6.12.0</FluentAssertionsVersion>
</PropertyGroup>
<PropertyGroup>
<NetCoreTestVersion>net8.0</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.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\README.md" Pack="true" Visible="false" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)\LICENSE" Pack="true" Visible="false" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)\docs\images\NBench_logo_square_90.png" Pack="true" Visible="false" PackagePath="\" />
</ItemGroup>
</Project>