#178: Configure Cake.Frosting build system

This commit is contained in:
Anton Kasyanov
2021-02-01 23:55:36 +02:00
parent e4229dcefc
commit 779ff2cf7c
14 changed files with 995 additions and 20 deletions

14
build/Configuration.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace Build
{
static class Configuration
{
public const string SolutionName = @"./EVE-O-Preview.sln";
public const string BinFolder = @"./bin";
public const string ToolsFolder = @"./tools";
public const string PublishFolder = @"./publish";
public const string BuildConfiguration = @"Release";
public const string BuildToolPath = @"c:\Developer Tools\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild.exe"; // Set to NULL to let Cake to try to use the default MSBuild instance
}
}