Skip to content

Commit

Permalink
Move FAKE into build group
Browse files Browse the repository at this point in the history
  • Loading branch information
forki authored and alfonsogarciacaro committed Oct 20, 2017
1 parent 39a5b46 commit 43baf14
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 70 deletions.
2 changes: 1 addition & 1 deletion build.cmd
Expand Up @@ -6,4 +6,4 @@ if errorlevel 1 (
exit /b %errorlevel%
)

packages\FAKE\tools\FAKE.exe build.fsx %*
packages\build\FAKE\tools\FAKE.exe build.fsx %*
2 changes: 1 addition & 1 deletion build.fsx
@@ -1,4 +1,4 @@
#r "packages/FAKE/tools/FakeLib.dll"
#r "packages/build/FAKE/tools/FakeLib.dll"
#r "System.IO.Compression.FileSystem"
#load "paket-files/fsharp/FAKE/modules/Octokit/Octokit.fsx"

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Expand Up @@ -16,4 +16,4 @@ exit_code=$?
if [ $exit_code -ne 0 ]; then
exit $exit_code
fi
$MONO packages/FAKE/tools/FAKE.exe $@ --fsiargs build.fsx
$MONO packages/build/FAKE/tools/FAKE.exe $@ --fsiargs build.fsx
8 changes: 6 additions & 2 deletions paket.dependencies
Expand Up @@ -8,7 +8,6 @@ nuget System.Collections.Immutable
nuget System.Reflection.Metadata
nuget Dotnet.ProjInfo

nuget FAKE
github fsprojects/FSharp.TypeProviders.StarterPack src/ProvidedTypes.fs
github fsharp/FAKE modules/Octokit/Octokit.fsx

Expand All @@ -17,4 +16,9 @@ group Test
source https://www.nuget.org/api/v2
nuget Microsoft.NET.Test.Sdk
nuget xunit 2.2.0
nuget xunit.runner.visualstudio 2.2.0
nuget xunit.runner.visualstudio 2.2.0

group Build
framework >= net45
source https://www.nuget.org/api/v2
nuget FAKE

0 comments on commit 43baf14

Please sign in to comment.