Browse Source
Merge branch 'main' into bp/webpanimation
pull/1985/head
James Jackson-South
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
tests/ImageSharp.Benchmarks/Config.cs
|
|
|
@ -34,7 +34,7 @@ namespace SixLabors.ImageSharp.Benchmarks |
|
|
|
public MultiFramework() => this.AddJob( |
|
|
|
Job.Default.WithRuntime(ClrRuntime.Net472), |
|
|
|
Job.Default.WithRuntime(CoreRuntime.Core31), |
|
|
|
Job.Default.WithRuntime(CoreRuntime.Core50).With(new Argument[] { new MsBuildArgument("/p:DebugType=portable") })); |
|
|
|
Job.Default.WithRuntime(CoreRuntime.Core50).WithArguments(new Argument[] { new MsBuildArgument("/p:DebugType=portable") })); |
|
|
|
} |
|
|
|
|
|
|
|
public class ShortMultiFramework : Config |
|
|
|
@ -42,7 +42,7 @@ namespace SixLabors.ImageSharp.Benchmarks |
|
|
|
public ShortMultiFramework() => this.AddJob( |
|
|
|
Job.Default.WithRuntime(ClrRuntime.Net472).WithLaunchCount(1).WithWarmupCount(3).WithIterationCount(3), |
|
|
|
Job.Default.WithRuntime(CoreRuntime.Core31).WithLaunchCount(1).WithWarmupCount(3).WithIterationCount(3), |
|
|
|
Job.Default.WithRuntime(CoreRuntime.Core50).WithLaunchCount(1).WithWarmupCount(3).WithIterationCount(3).With(new Argument[] { new MsBuildArgument("/p:DebugType=portable") })); |
|
|
|
Job.Default.WithRuntime(CoreRuntime.Core50).WithLaunchCount(1).WithWarmupCount(3).WithIterationCount(3).WithArguments(new Argument[] { new MsBuildArgument("/p:DebugType=portable") })); |
|
|
|
} |
|
|
|
|
|
|
|
public class ShortCore31 : Config |
|
|
|
|