Cosmos/source/Cosmos.Build.Builder/IBuilderConfiguration.cs
2018-03-28 01:18:46 +01:00

11 lines
250 B
C#

namespace Cosmos.Build.Builder
{
internal interface IBuilderConfiguration
{
bool NoVsLaunch { get; }
bool UserKit { get; }
bool StayOpen { get; }
bool NoClean { get; }
string VsPath { get; }
}
}