Dont launch Kernel.sln in VS after building devkit

This commit is contained in:
Quajak 2020-11-19 00:16:34 +01:00 committed by GitHub
parent b9642a4793
commit a14aae5f0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -162,18 +162,6 @@ namespace Cosmos.Build.Builder
{
xKey.SetValue("DevKit", _cosmosDir);
}
// Launch VS
if (!App.BuilderConfiguration.NoVsLaunch)
{
var vsInstance = _visualStudioInstance;
var vsPath = Path.Combine(vsInstance.GetInstallationPath(), "Common7", "IDE", "devenv.exe");
var kernelSlnPath = Path.Combine(_cosmosDir, "Kernel.sln");
yield return new StartProcessTask(vsPath, kernelSlnPath, "Visual Studio (Kernel.sln)");
}
}
}
}