File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
tests/ImageSharp.Benchmarks Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,15 @@ public class MultiFramework : Config
3434 public MultiFramework ( ) => this . AddJob (
3535 Job . Default . WithRuntime ( ClrRuntime . Net472 ) ,
3636 Job . Default . WithRuntime ( CoreRuntime . Core31 ) ,
37- Job . Default . WithRuntime ( CoreRuntime . Core50 ) ) ;
37+ Job . Default . WithRuntime ( CoreRuntime . Core50 ) . With ( new Argument [ ] { new MsBuildArgument ( "/p:DebugType=portable" ) } ) ) ;
3838 }
3939
4040 public class ShortMultiFramework : Config
4141 {
4242 public ShortMultiFramework ( ) => this . AddJob (
4343 Job . Default . WithRuntime ( ClrRuntime . Net472 ) . WithLaunchCount ( 1 ) . WithWarmupCount ( 3 ) . WithIterationCount ( 3 ) ,
4444 Job . Default . WithRuntime ( CoreRuntime . Core31 ) . WithLaunchCount ( 1 ) . WithWarmupCount ( 3 ) . WithIterationCount ( 3 ) ,
45- Job . Default . WithRuntime ( CoreRuntime . Core50 ) . WithLaunchCount ( 1 ) . WithWarmupCount ( 3 ) . WithIterationCount ( 3 ) ) ;
45+ Job . Default . WithRuntime ( CoreRuntime . Core50 ) . WithLaunchCount ( 1 ) . WithWarmupCount ( 3 ) . WithIterationCount ( 3 ) . With ( new Argument [ ] { new MsBuildArgument ( "/p:DebugType=portable" ) } ) ) ;
4646 }
4747
4848 public class ShortCore31 : Config
Original file line number Diff line number Diff line change 66 <OutputType >Exe</OutputType >
77 <RootNamespace >SixLabors.ImageSharp.Benchmarks</RootNamespace >
88 <GenerateProgramFile >false</GenerateProgramFile >
9+ <DebugType >portable</DebugType >
910 <!-- Used to hide test project from dotnet test-->
1011 <IsTestProject >false</IsTestProject >
1112 <Configurations >Debug;Release;Debug-InnerLoop;Release-InnerLoop</Configurations >
You can’t perform that action at this time.
0 commit comments