Skip to content

Commit

Permalink
upgrade FAKE, try to pin preview-2 of .NET Core SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
lahma committed Nov 27, 2016
1 parent e893736 commit 5e6a119
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ WORKDIR app
RUN chmod a+x ./build.sh

# run default units tests only
ENTRYPOINT ./build.sh Test
RUN ./build.sh Test
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
cls

"tools\NuGet\NuGet.exe" "Install" "FAKE" "-Version" "4.39" "-OutputDirectory" "packages" "-ExcludeVersion"
"tools\NuGet\NuGet.exe" "Install" "FAKE" "-Version" "4.45.0" "-OutputDirectory" "packages" "-ExcludeVersion"
"packages\FAKE\tools\Fake.exe" build.fsx %*
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

FAKE_VERSION="4.39"
FAKE_VERSION="4.45.0"

mono tools/NuGet/NuGet.exe install FAKE -Version $FAKE_VERSION -OutputDirectory packages -ExcludeVersion
mono packages/FAKE/tools/FAKE.exe build.fsx $@
7 changes: 5 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"projects": [ "src", "test" ]
}
"projects": [ "src", "test" ],
"sdk": {
"version": "1.0.0-preview2-003131"
}
}

0 comments on commit 5e6a119

Please sign in to comment.