Skip to content

Commit

Permalink
Update performance benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerBrinkley committed Nov 11, 2019
1 parent 2f02b2c commit 3fd95b0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Src/Enums.NET.PerfTestConsole/ParseBenchmarks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ internal sealed class EnumParser<TEnum> : Parser
public override void Parse(string value)
{
#if NET461
Enum.TryParse<TEnum>(value, out _);
Enum.TryParse<TEnum>(value, out _);
#else
Enum.Parse<TEnum>(value);
#endif
Expand Down
6 changes: 3 additions & 3 deletions Src/Enums.NET/Enums.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<PropertyGroup>
<TargetFrameworks>net45;netcoreapp3.0;netstandard2.1;netstandard2.0;netstandard1.3;netstandard1.1;netstandard1.0</TargetFrameworks>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.0</FileVersion>
<VersionPrefix>3.0.0</VersionPrefix>
<FileVersion>3.0.1</FileVersion>
<VersionPrefix>3.0.1</VersionPrefix>
<VersionSufix></VersionSufix>
<PackageVersion>3.0.0</PackageVersion>
<PackageVersion>3.0.1</PackageVersion>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Authors>Tyler Brinkley</Authors>
<Description>Enums.NET is a high-performance type-safe .NET enum utility library</Description>
Expand Down
Binary file modified performance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified performance.xlsx
Binary file not shown.

0 comments on commit 3fd95b0

Please sign in to comment.