forked from larrybeall/DirectShowLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.cake
43 lines (36 loc) · 1.07 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#r tools/JAVS.Cake/lib/netstandard2.0/JAVS.Cake.dll
var target = Argument("target", "Build-Solution");
var config = Argument("config", "Release");
var fullVersion = Argument("fullVersion", "1.0.0.0");
void CheckTeamCity()
{
if (TeamCity.IsRunningOnTeamCity)
{
TaskSetup(x =>
{
TeamCity.WriteStartBuildBlock(x.Task.Name);
TeamCity.WriteStartProgress(x.Task.Name);
});
TaskTeardown(x =>
{
TeamCity.WriteEndProgress(x.Task.Name);
TeamCity.WriteEndBuildBlock(x.Task.Name);
});
}
}
CheckTeamCity();
Task("Update-Version")
.Does(() =>
{
foreach (var csproj in GetFiles("**/*.csproj"))
{
Information($"Updating {csproj} to {fullVersion}...");
RegexReplaceInFile(csproj.ToString(), "(<Version>)([0-9\\.]+)(</Version>)", $"${{1}}{fullVersion}$3");
}
});
Task("Build-Solution")
.Does(() => DotNetCoreBuild("DirectShowLib", new DotNetCoreBuildSettings()
{
Configuration = config
}));
RunTarget(target);