Skip to content

Commit

Permalink
[Build] Make sure .NET Core cross-platform development workload is pa…
Browse files Browse the repository at this point in the history
…rt of VS2019 prerequisites as per #673 (comment) (#673)
  • Loading branch information
xen2 committed May 18, 2020
1 parent f8c8695 commit 062cdab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/tools/Stride.PackageInstall/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Stride.PackageInstall
{
class Program
{
private static readonly string[] NecessaryVS2019Workloads = new[] { "Microsoft.VisualStudio.Workload.ManagedDesktop", "Microsoft.NetCore.ComponentGroup.DevelopmentTools.2.1" };
private static readonly string[] NecessaryVS2019Workloads = new[] { "Microsoft.VisualStudio.Workload.ManagedDesktop", "Microsoft.VisualStudio.Workload.NetCoreTools", "Microsoft.NetCore.ComponentGroup.DevelopmentTools.2.1" };
private static readonly string[] NecessaryBuildTools2019Workloads = new[] { "Microsoft.VisualStudio.Workload.MSBuildTools", "Microsoft.VisualStudio.Workload.NetCoreBuildTools", "Microsoft.Net.Component.4.6.1.TargetingPack" };
private const bool AllowVisualStudioOnly = true; // Somehow this doesn't work well yet, so disabled for now

Expand Down

0 comments on commit 062cdab

Please sign in to comment.