@@ -571,19 +571,19 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
571
571
return MakeWasmJob ( baseJob , options , "net9.0" , runtimeMoniker ) ;
572
572
573
573
case RuntimeMoniker . MonoAOTLLVM :
574
- return MakeMonoAOTLLVMJob ( baseJob , options , RuntimeInformation . IsNetCore ? CoreRuntime . GetCurrentVersion ( ) . MsBuildMoniker : "net6.0" ) ;
574
+ return MakeMonoAOTLLVMJob ( baseJob , options , RuntimeInformation . IsNetCore ? CoreRuntime . GetCurrentVersion ( ) . MsBuildMoniker : "net6.0" , runtimeMoniker ) ;
575
575
576
576
case RuntimeMoniker . MonoAOTLLVMNet60 :
577
- return MakeMonoAOTLLVMJob ( baseJob , options , "net6.0" ) ;
577
+ return MakeMonoAOTLLVMJob ( baseJob , options , "net6.0" , runtimeMoniker ) ;
578
578
579
579
case RuntimeMoniker . MonoAOTLLVMNet70 :
580
- return MakeMonoAOTLLVMJob ( baseJob , options , "net7.0" ) ;
580
+ return MakeMonoAOTLLVMJob ( baseJob , options , "net7.0" , runtimeMoniker ) ;
581
581
582
582
case RuntimeMoniker . MonoAOTLLVMNet80 :
583
- return MakeMonoAOTLLVMJob ( baseJob , options , "net8.0" ) ;
583
+ return MakeMonoAOTLLVMJob ( baseJob , options , "net8.0" , runtimeMoniker ) ;
584
584
585
585
case RuntimeMoniker . MonoAOTLLVMNet90 :
586
- return MakeMonoAOTLLVMJob ( baseJob , options , "net9.0" ) ;
586
+ return MakeMonoAOTLLVMJob ( baseJob , options , "net9.0" , runtimeMoniker ) ;
587
587
588
588
case RuntimeMoniker . Mono60 :
589
589
return MakeMonoJob ( baseJob , options , MonoRuntime . Mono60 ) ;
@@ -637,9 +637,9 @@ private static Job MakeMonoJob(Job baseJob, CommandLineOptions options, MonoRunt
637
637
packagesPath : options . RestorePath ? . FullName ) ) ) ;
638
638
}
639
639
640
- private static Job MakeMonoAOTLLVMJob ( Job baseJob , CommandLineOptions options , string msBuildMoniker )
640
+ private static Job MakeMonoAOTLLVMJob ( Job baseJob , CommandLineOptions options , string msBuildMoniker , RuntimeMoniker moniker )
641
641
{
642
- var monoAotLLVMRuntime = new MonoAotLLVMRuntime ( aotCompilerPath : options . AOTCompilerPath , aotCompilerMode : options . AOTCompilerMode , msBuildMoniker : msBuildMoniker ) ;
642
+ var monoAotLLVMRuntime = new MonoAotLLVMRuntime ( aotCompilerPath : options . AOTCompilerPath , aotCompilerMode : options . AOTCompilerMode , msBuildMoniker : msBuildMoniker , moniker : moniker ) ;
643
643
644
644
var toolChain = MonoAotLLVMToolChain . From (
645
645
new NetCoreAppSettings (
0 commit comments