Skip to content

Commit 9d7b00e

Browse files
authored
Merge pull request #2269 from Diamantino-Op/master
Fixed Builer solution
2 parents b732017 + 65008cd commit 9d7b00e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/Cosmos.Build.Builder/Dependencies/VisualStudioWorkloadsDependency.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
{

0 commit comments

Comments
 (0)