This repository was archived by the owner on Sep 3, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#addin "nuget:?package=Cake.FileHelpers&version=2.0.0"
2+ #addin "nuget:?package=Cake.Incubator&version=3.0.0"
23
34var target = Argument ( "target" , "Default" ) ;
45var configuration = Argument ( "configuration" , "Release" ) ;
56var artifactsDir = Directory ( "./artifacts" ) ;
67var srcDir = Directory ( "./src" ) ;
78var solution = srcDir + File ( "SqlStreamStore.HAL.sln" ) ;
8- var buildNumber = string . IsNullOrWhiteSpace ( EnvironmentVariable ( "BUILD_NUMBER" ) )
9- ? "0"
10- : EnvironmentVariable ( "BUILD_NUMBER" ) ;
9+ var buildNumber = EnvironmentVariable ( "TRAVIS_BUILD_NUMBER" , 0 ) ;
1110var mygetApiKey = EnvironmentVariable ( "MYGET_API_KEY" ) ;
1211
1312Task ( "Clean" )
Original file line number Diff line number Diff line change 3939 [string []]$ScriptArgs
4040)
4141
42- $cakeVersion = " 0.26 .0"
42+ $cakeVersion = " 0.29 .0"
4343$buildPath = " $PSScriptRoot /build"
4444$proj = @"
4545<Project Sdk="Microsoft.NET.Sdk">
Original file line number Diff line number Diff line change 99SCRIPT_DIR=$( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd )
1010TOOLS_DIR=$SCRIPT_DIR /tools
1111TOOLS_PROJ=$TOOLS_DIR /tools.csproj
12- CAKE_VERSION=0.26.1
12+ CAKE_VERSION=0.29.0
1313CAKE_DLL=$TOOLS_DIR /Cake.CoreCLR.$CAKE_VERSION /cake.coreclr/$CAKE_VERSION /Cake.dll
1414DOTNET_INSTALL_PATH=$SCRIPT_DIR /.dotnet
1515
You can’t perform that action at this time.
0 commit comments