Skip to content

Commit c449c78

Browse files
committed
build fix
1 parent b38f97f commit c449c78

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

build.cake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,6 @@ Task("BuildAndPackServiceWinArm64")
412412
///////////////////////////////////////////////////////////////////////////////
413413
Task("All")
414414
.IsDependentOn("Clean")
415-
.IsDependentOn("PatchAssemblyInfo")
416415
.IsDependentOn("CreateReleaseNotes")
417416
.IsDependentOn("Restore")
418417
.IsDependentOn("Test")

build.ps1

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
$ErrorActionPreference = "Stop"
2+
13
dotnet tool install --global Cake.Tool --version 5.1.0
4+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
5+
26
dotnet tool install --global vpk --version 0.0.1298
3-
dotnet-cake --configuration=Release
7+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
8+
9+
dotnet-cake --configuration=Release
10+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }

0 commit comments

Comments
 (0)