Skip to content

Commit 582acf7

Browse files
authored
Update build to use SDK 2.1.403 (#331)
* Update build.ps1 * Update build.sh
1 parent 2845f74 commit 582acf7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$CakeVersion = "0.30.0"
2-
$DotNetVersion = "2.1.401";
2+
$DotNetVersion = "2.1.403";
33
$DotNetInstallerUri = "https://dot.net/v1/dotnet-install.ps1";
44

55
# Make sure tools folder exists
@@ -93,4 +93,4 @@ if ($LASTEXITCODE -eq 0)
9393
{
9494
& "$CakeExePath" ./build.cake $args
9595
}
96-
exit $LASTEXITCODE
96+
exit $LASTEXITCODE

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
# Define varibles
33
CAKE_VERSION=0.30.0
4-
DOTNET_VERSION=2.1.401
4+
DOTNET_VERSION=2.1.403
55
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
66
TOOLS_DIR=$SCRIPT_DIR/tools
77
CAKE_EXE=$TOOLS_DIR/dotnet-cake
@@ -52,4 +52,4 @@ fi
5252
###########################################################################
5353

5454
# Start Cake
55-
(exec "$CAKE_EXE" build.cake --bootstrap) && (exec "$CAKE_EXE" build.cake "$@")
55+
(exec "$CAKE_EXE" build.cake --bootstrap) && (exec "$CAKE_EXE" build.cake "$@")

0 commit comments

Comments
 (0)