mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +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.
13 lines
308 B
C#
13 lines
308 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.Build.Builder
|
|
{
|
|
internal interface IDependency
|
|
{
|
|
string Name { get; }
|
|
|
|
Task<bool> IsInstalledAsync(CancellationToken cancellationToken);
|
|
Task InstallAsync(CancellationToken cancellationToken);
|
|
}
|
|
}
|