Skip to content

Commit 9ef65b5

Browse files
committed
Resolve double global setup attribute issue.
1 parent 6106b44 commit 9ef65b5

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

jemalloc.Api/jemalloc.Api.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1010
<PackageId>jemalloc.NET</PackageId>
11-
<Version>0.2.2-alpha</Version>
11+
<Version>0.2.3-alpha</Version>
1212
<Authors>Allister Beharry</Authors>
1313
<Company />
1414
<Product>jemalloc.NET</Product>
15-
<AssemblyVersion>0.2.2.0</AssemblyVersion>
16-
<FileVersion>0.2.2.0</FileVersion>
15+
<AssemblyVersion>0.2.3.0</AssemblyVersion>
16+
<FileVersion>0.2.3.0</FileVersion>
1717
<PackageProjectUrl>https://github.com/allisterb/jemalloc.NET</PackageProjectUrl>
1818
<PackageLicenseUrl>https://github.com/allisterb/jemalloc.NET/LICENSE</PackageLicenseUrl>
1919
<RepositoryUrl>https://github.com/allisterb/jemalloc.NET</RepositoryUrl>

jemalloc.Benchmarks/Benchmarks/HugeNativeVsManagedArray.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class HugeNativeVsManagedArrayBenchmark<T> : JemBenchmark<T, ulong> where
1515
public T fill = typeof(T) == typeof(TestUDT) ? JemUtil.ValToGenericStruct<TestUDT, T>(TestUDT.MakeTestRecord(JemUtil.Rng)) : GM<T>.Random();
1616
public (T factor, T max) mul = GM<T>.RandomMultiplyFactorAndValue();
1717

18-
[GlobalSetup]
18+
1919
public override void GlobalSetup()
2020
{
2121
DebugInfoThis();

jemalloc.Benchmarks/Benchmarks/MallocVsArray.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class MallocVsArrayBenchmark<T> : JemBenchmark<T, int> where T : struct,
1616
public const int SmallBlockSize = 90000;
1717
public int LoopCount => Parameter;
1818

19-
[GlobalSetup]
19+
2020
public override void GlobalSetup()
2121
{
2222
base.GlobalSetup();

jemalloc.Benchmarks/Benchmarks/SafeVsManagedArray.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class SafeVsManagedArrayBenchmark<T> : JemBenchmark<T, int> where T : str
1515
public readonly T fill = typeof(T) == typeof(TestUDT) ? JemUtil.ValToGenericStruct<TestUDT, T>(TestUDT.MakeTestRecord(JemUtil.Rng)) : GM<T>.Random();
1616
public readonly (T factor, T max) mul = GM<T>.RandomMultiplyFactorAndValue();
1717

18-
[GlobalSetup]
18+
1919
public override void GlobalSetup()
2020
{
2121
DebugInfoThis();

jemalloc.Cli/jemalloc.Cli.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<TargetFramework>netcoreapp2.0</TargetFramework>
66
<Platforms>AnyCPU;x64</Platforms>
77
<AssemblyName>jemalloc.Cli</AssemblyName>
8-
<AssemblyVersion>0.2.2.0</AssemblyVersion>
9-
<FileVersion>0.2.2.0</FileVersion>
10-
<Version>0.2.2-alpha</Version>
8+
<AssemblyVersion>0.2.3.0</AssemblyVersion>
9+
<FileVersion>0.2.3.0</FileVersion>
10+
<Version>0.2.3-alpha</Version>
1111
<Authors>Allister Beharry</Authors>
1212
<Company />
1313
<Product>jemalloc.NET</Product>

0 commit comments

Comments
 (0)