@@ -532,6 +532,7 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
532
532
case RuntimeMoniker . Net60 :
533
533
case RuntimeMoniker . Net70 :
534
534
case RuntimeMoniker . Net80 :
535
+ case RuntimeMoniker . Net90 :
535
536
return baseJob
536
537
. WithRuntime ( runtimeMoniker . GetRuntime ( ) )
537
538
. WithToolchain ( CsProjCoreToolchain . From ( new NetCoreAppSettings ( runtimeId , null , runtimeId , options . CliPath ? . FullName , options . RestorePath ? . FullName ) ) ) ;
@@ -548,6 +549,9 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
548
549
case RuntimeMoniker . NativeAot80 :
549
550
return CreateAotJob ( baseJob , options , runtimeMoniker , "" , "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json" ) ;
550
551
552
+ case RuntimeMoniker . NativeAot90 :
553
+ return CreateAotJob ( baseJob , options , runtimeMoniker , "" , "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json" ) ;
554
+
551
555
case RuntimeMoniker . Wasm :
552
556
return MakeWasmJob ( baseJob , options , RuntimeInformation . IsNetCore ? CoreRuntime . GetCurrentVersion ( ) . MsBuildMoniker : "net5.0" , runtimeMoniker ) ;
553
557
@@ -578,6 +582,9 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
578
582
case RuntimeMoniker . MonoAOTLLVMNet80 :
579
583
return MakeMonoAOTLLVMJob ( baseJob , options , "net8.0" ) ;
580
584
585
+ case RuntimeMoniker . MonoAOTLLVMNet90 :
586
+ return MakeMonoAOTLLVMJob ( baseJob , options , "net9.0" ) ;
587
+
581
588
case RuntimeMoniker . Mono60 :
582
589
return MakeMonoJob ( baseJob , options , MonoRuntime . Mono60 ) ;
583
590
@@ -587,6 +594,9 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
587
594
case RuntimeMoniker . Mono80 :
588
595
return MakeMonoJob ( baseJob , options , MonoRuntime . Mono80 ) ;
589
596
597
+ case RuntimeMoniker . Mono90 :
598
+ return MakeMonoJob ( baseJob , options , MonoRuntime . Mono90 ) ;
599
+
590
600
default :
591
601
throw new NotSupportedException ( $ "Runtime { runtimeId } is not supported") ;
592
602
}
0 commit comments