mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
- Added check for dependencies, which can be installed from the builder. - Replaced CosmosTask with CosmosBuildDefinition, which is much simpler. - The builder can be opened without any command line arguments. - If the VS path is not specified as a command line argument, it can be selected in a dialog.
10 lines
243 B
C#
10 lines
243 B
C#
using System.Collections.Generic;
|
|
using Microsoft.VisualStudio.Setup.Configuration;
|
|
|
|
namespace Cosmos.Build.Builder.Services
|
|
{
|
|
internal interface IVisualStudioService
|
|
{
|
|
IReadOnlyList<ISetupInstance2> GetInstances();
|
|
}
|
|
}
|