File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
source/Cosmos.Build.Builder/Dependencies Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ namespace Cosmos.Build.Builder.Dependencies
1010 internal class VisualStudioWorkloadsDependency : IDependency
1111 {
1212 private const string NetCore48SDK = "Microsoft.Net.Component.4.8.SDK" ;
13- private const string NetCore50Runtime = "Microsoft.NetCore.Component.Runtime.5 .0" ;
13+ private const string NetCore60Runtime = "Microsoft.NetCore.Component.Runtime.6 .0" ;
1414 private const string VisualStudioExtensionsWorkload = "Microsoft.VisualStudio.Workload.VisualStudioExtension" ;
1515
1616 private static readonly string [ ] RequiredPackages = new string [ ]
1717 {
1818 NetCore48SDK ,
19- NetCore50Runtime ,
19+ NetCore60Runtime ,
2020 VisualStudioExtensionsWorkload
2121 } ;
2222 public string [ ] arg = Environment . GetCommandLineArgs ( ) ;
@@ -65,9 +65,9 @@ private string GetProperName(string packageId)
6565 {
6666 return ".Net Core 4.8 SDK" ;
6767 }
68- else if ( packageId == NetCore50Runtime )
68+ else if ( packageId == NetCore60Runtime )
6969 {
70- return ".Net Core 5 .0 Runtime" ;
70+ return ".Net Core 6 .0 Runtime" ;
7171 }
7272 else if ( packageId == VisualStudioExtensionsWorkload )
7373 {
You can’t perform that action at this time.
0 commit comments