@@ -528,6 +528,7 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
528528 case RuntimeMoniker . Net70 :
529529 case RuntimeMoniker . Net80 :
530530 case RuntimeMoniker . Net90 :
531+ case RuntimeMoniker . Net10_0 :
531532 return baseJob
532533 . WithRuntime ( runtimeMoniker . GetRuntime ( ) )
533534 . WithToolchain ( CsProjCoreToolchain . From ( new NetCoreAppSettings ( runtimeId , null , runtimeId , options . CliPath ? . FullName , options . RestorePath ? . FullName ) ) ) ;
@@ -547,6 +548,9 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
547548 case RuntimeMoniker . NativeAot90 :
548549 return CreateAotJob ( baseJob , options , runtimeMoniker , "" , "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json" ) ;
549550
551+ case RuntimeMoniker . NativeAot10_0 :
552+ return CreateAotJob ( baseJob , options , runtimeMoniker , "" , "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10/nuget/v3/index.json" ) ;
553+
550554 case RuntimeMoniker . Wasm :
551555 return MakeWasmJob ( baseJob , options , RuntimeInformation . IsNetCore ? CoreRuntime . GetCurrentVersion ( ) . MsBuildMoniker : "net5.0" , runtimeMoniker ) ;
552556
@@ -565,6 +569,9 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
565569 case RuntimeMoniker . WasmNet90 :
566570 return MakeWasmJob ( baseJob , options , "net9.0" , runtimeMoniker ) ;
567571
572+ case RuntimeMoniker . WasmNet10_0 :
573+ return MakeWasmJob ( baseJob , options , "net10.0" , runtimeMoniker ) ;
574+
568575 case RuntimeMoniker . MonoAOTLLVM :
569576 return MakeMonoAOTLLVMJob ( baseJob , options , RuntimeInformation . IsNetCore ? CoreRuntime . GetCurrentVersion ( ) . MsBuildMoniker : "net6.0" , runtimeMoniker ) ;
570577
@@ -580,6 +587,9 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
580587 case RuntimeMoniker . MonoAOTLLVMNet90 :
581588 return MakeMonoAOTLLVMJob ( baseJob , options , "net9.0" , runtimeMoniker ) ;
582589
590+ case RuntimeMoniker . MonoAOTLLVMNet10_0 :
591+ return MakeMonoAOTLLVMJob ( baseJob , options , "net10.0" , runtimeMoniker ) ;
592+
583593 case RuntimeMoniker . Mono60 :
584594 return MakeMonoJob ( baseJob , options , MonoRuntime . Mono60 ) ;
585595
@@ -592,6 +602,9 @@ private static Job CreateJobForGivenRuntime(Job baseJob, string runtimeId, Comma
592602 case RuntimeMoniker . Mono90 :
593603 return MakeMonoJob ( baseJob , options , MonoRuntime . Mono90 ) ;
594604
605+ case RuntimeMoniker . Mono10_0 :
606+ return MakeMonoJob ( baseJob , options , MonoRuntime . Mono10_0 ) ;
607+
595608 default :
596609 throw new NotSupportedException ( $ "Runtime { runtimeId } is not supported") ;
597610 }
0 commit comments