Skip to content

Commit

Permalink
(#22) Bump Cake.Recipe to 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-a committed Jul 23, 2024
1 parent fb493b8 commit b964fbb
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "0.38.5",
"version": "1.3.0",
"commands": [
"dotnet-cake"
],
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ jobs:
target: CI
verbosity: Normal
cake-version: tool-manifest
cake-bootstrap: explicit

- name: Upload Issues-Report
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,3 @@ jobs:
target: releasenotes
verbosity: Normal
cake-version: tool-manifest
cake-bootstrap: true
5 changes: 0 additions & 5 deletions build.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
$ErrorActionPreference = 'Stop'

Set-Location -LiteralPath $PSScriptRoot

$env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = '1'
Expand All @@ -9,8 +7,5 @@ $env:DOTNET_NOLOGO = '1'
dotnet tool restore
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }

dotnet cake recipe.cake --bootstrap
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }

dotnet cake recipe.cake @args
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
1 change: 0 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ export DOTNET_NOLOGO=1

dotnet tool restore

dotnet cake recipe.cake --bootstrap
dotnet cake recipe.cake "$@"
3 changes: 2 additions & 1 deletion recipe.cake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#load nuget:?package=Cake.Recipe&version=2.2.1
#load nuget:?package=Cake.Recipe&version=3.1.1

Environment.SetVariableNames();

Expand All @@ -24,3 +24,4 @@ ToolSettings.SetToolSettings(context: Context,
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");

Build.RunDotNetCore();

0 comments on commit b964fbb

Please sign in to comment.