generated from pleonex/template-csharp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.cake
26 lines (19 loc) · 865 Bytes
/
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
#load "nuget:?package=PleOps.Cake&version=0.8.0"
Task("Define-Project")
.Description("Fill specific project information")
.Does<BuildInfo>(info =>
{
info.CoverageTarget = 75;
info.PreviewNuGetFeed = "https://nuget.pkg.github.com/Kaplas80/index.json";
info.PreviewNuGetFeedToken = info.GitHubToken;
info.StableNuGetFeed = "https://nuget.pkg.github.com/Kaplas80/index.json";
info.StableNuGetFeedToken = info.GitHubToken;
info.AddApplicationProjects("TF3.YarhlPlugin.YakuzaCommon");
info.AddLibraryProjects("TF3.YarhlPlugin.YakuzaCommon");
info.AddTestProjects("TF3.Tests.Yakuza");
info.PreviewNuGetFeed = "https://pkgs.dev.azure.com/kaplas80/TF3/_packaging/TF3-Preview/nuget/v3/index.json";
});
Task("Default")
.IsDependentOn("Stage-Artifacts");
string target = Argument("target", "Default");
RunTarget(target);