forked from editorconfig/editorconfig-core-net
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.cake
28 lines (20 loc) · 1.15 KB
/
build.cake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#load nuget:StarkBIM?package=StarkBIM.Cake.Recipe&version=0.2.71-gcf6587c3ea&prerelease=true
//////////////////////////////////////////////////////////////////////
// VARIABLES
//////////////////////////////////////////////////////////////////////
const string Project = "EditorConfig";
///////////////////////////////////////////////////////////////////////////////
// SETUP / TEARDOWN
///////////////////////////////////////////////////////////////////////////////
// Run this before configuring projects
// Certain properties like IsDebug must be set first
BuildParameters.Initialize(Context, BuildSystem, Project, directorySettings: new DirectorySettings(Context, testDirectory: "./src"));
///////////////////////////////////////////////////////////////////////////////
// TARGETS
///////////////////////////////////////////////////////////////////////////////
// Add any project-specific targets here
BuildParameters.ConfigureProjects(unitTestFilter: @"\**\*.Tests.csproj");
///////////////////////////////////////////////////////////////////////////////
// EXECUTION
///////////////////////////////////////////////////////////////////////////////
Build.Run();