Skip to content

Commit 067a22a

Browse files
committed
update FAKE to newest version
1 parent a653dec commit 067a22a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

build.cmd

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ SET VERSION=
1111

1212
IF NOT [%2]==[] (set VERSION="%~2")
1313

14-
echo Installing FAKE
15-
"Source\.nuget\NuGet.exe" "install" "FAKE" "-OutputDirectory" "Source\packages" "-Version" "1.64.5"
14+
SET FAKE_VERSION=1.64.10
1615

17-
"Source\packages\FAKE.1.64.5\tools\Fake.exe" "build.fsx" "target=%TARGET%" %VERSION%
16+
echo Installing FAKE %FAKE_VERSION%
17+
"Source\.nuget\NuGet.exe" "install" "FAKE" "-OutputDirectory" "Source\packages" "-Version" "%FAKE_VERSION%"
18+
19+
"Source\packages\FAKE.%FAKE_VERSION%\tools\Fake.exe" "build.fsx" "target=%TARGET%" %VERSION%
1820

1921
rem Bail if we're running a TeamCity build.
2022
if defined TEAMCITY_PROJECT_NAME goto Quit

build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#I @"Source\packages\Fake.1.64.5\tools"
1+
#I @"Source\packages\Fake.1.64.10\tools"
22
#r "FakeLib.dll"
33

44
open Fake

0 commit comments

Comments
 (0)