@@ -532,6 +532,7 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
532532 case RuntimeMoniker . Net60 :
533533 case RuntimeMoniker . Net70 :
534534 case RuntimeMoniker . Net80 :
535+ case RuntimeMoniker . Net90 :
535536 return baseJob
536537 . WithRuntime ( runtimeMoniker . GetRuntime ( ) )
537538 . 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
548549 case RuntimeMoniker . NativeAot80 :
549550 return CreateAotJob ( baseJob , options , runtimeMoniker , "" , "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json" ) ;
550551
552+ case RuntimeMoniker . NativeAot90 :
553+ return CreateAotJob ( baseJob , options , runtimeMoniker , "" , "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json" ) ;
554+
551555 case RuntimeMoniker . Wasm :
552556 return MakeWasmJob ( baseJob , options , RuntimeInformation . IsNetCore ? CoreRuntime . GetCurrentVersion ( ) . MsBuildMoniker : "net5.0" , runtimeMoniker ) ;
553557
@@ -578,6 +582,9 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
578582 case RuntimeMoniker . MonoAOTLLVMNet80 :
579583 return MakeMonoAOTLLVMJob ( baseJob , options , "net8.0" ) ;
580584
585+ case RuntimeMoniker . MonoAOTLLVMNet90 :
586+ return MakeMonoAOTLLVMJob ( baseJob , options , "net9.0" ) ;
587+
581588 case RuntimeMoniker . Mono60 :
582589 return MakeMonoJob ( baseJob , options , MonoRuntime . Mono60 ) ;
583590
@@ -587,6 +594,9 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
587594 case RuntimeMoniker . Mono80 :
588595 return MakeMonoJob ( baseJob , options , MonoRuntime . Mono80 ) ;
589596
597+ case RuntimeMoniker . Mono90 :
598+ return MakeMonoJob ( baseJob , options , MonoRuntime . Mono90 ) ;
599+
590600 default :
591601 throw new NotSupportedException ( $ "Runtime { runtimeId } is not supported") ;
592602 }
0 commit comments