-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #152 from jmp75/testing
Updating the dependency to R.NET 1.6.3
- Loading branch information
Showing
11 changed files
with
144 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,37 @@ | ||
@echo off | ||
.nuget\nuget.exe install FAKE -OutputDirectory packages -ExcludeVersion | ||
packages\FAKE\tools\FAKE.exe build.fsx %* | ||
|
||
if not exist .paket\paket.bootstrapper.exe goto pktbootnotfound | ||
.paket\paket.bootstrapper.exe | ||
if not errorlevel 0 goto pktbootfailed | ||
|
||
.paket\paket.exe restore | ||
if not errorlevel 0 goto pktrestorefailed | ||
|
||
packages\FAKE\tools\FAKE.exe %* --fsiargs -d:MONO build.fsx | ||
if not errorlevel 0 goto fakefailed | ||
|
||
set exit_code=0 | ||
goto leave | ||
|
||
:pktbootnotfound | ||
echo command not found: .paket\paket.bootstrapper.exe | ||
set exit_code=1 | ||
goto leave | ||
|
||
:pktbootfailed | ||
echo command failed: .paket\paket.bootstrapper.exe | ||
set exit_code=1 | ||
goto leave | ||
|
||
:pktrestorefailed | ||
echo command failed: .paket\paket.exe restore | ||
set exit_code=1 | ||
goto leave | ||
|
||
:fakefailed | ||
echo command failed: packages\FAKE\tools\FAKE.exe %* --fsiargs -d:MONO build.fsx | ||
set exit_code=1 | ||
goto leave | ||
|
||
:leave | ||
exit /b %exit_code% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,33 @@ | ||
NUGET | ||
remote: https://www.nuget.org/api/v2 | ||
specs: | ||
FAKE (3.13.4) | ||
DynamicInterop (0.7.4) | ||
FAKE (3.34.7) | ||
FsCheck (1.0.4) | ||
FsCheck.Xunit (1.0.4) | ||
FsCheck (>= 1.0.4) | ||
xunit (>= 1.9.2) | ||
FSharp.Compiler.Service (0.0.81) | ||
FSharp.Compiler.Service (0.0.89) | ||
FSharp.Core (3.0.2) | ||
FSharp.Data (2.1.1) | ||
Zlib.Portable (>= 1.10.0) | ||
FSharp.Formatting (2.6.0) | ||
FSharp.Compiler.Service (>= 0.0.81) | ||
ILRepack (1.25.0) | ||
NuGet.CommandLine (2.8.3) | ||
R.NET.Community (1.5.16) | ||
R.NET.Community.FSharp (0.1.9) | ||
R.NET.Community (>= 1.5.16) | ||
FSharp.Data (2.2.2) | ||
Zlib.Portable (>= 1.10.0) - framework: portable-net40+sl50+wp80+win80 | ||
FSharp.Formatting (2.9.6) | ||
FSharp.Compiler.Service (>= 0.0.87) | ||
FSharpVSPowerTools.Core (1.8.0) | ||
FSharpVSPowerTools.Core (1.8.0) | ||
FSharp.Compiler.Service (>= 0.0.87) | ||
ILRepack (2.0.0) | ||
NuGet.CommandLine (2.8.5) | ||
R.NET.Community (1.6.3) | ||
DynamicInterop (0.7.4) | ||
R.NET.Community.FSharp (1.6.3) | ||
R.NET.Community (>= 1.6.3) | ||
xunit (1.9.2) | ||
xunit.runners (1.9.2) | ||
Zlib.Portable (1.10.0) | ||
Zlib.Portable (1.10.0) - framework: portable-net40+sl50+wp80+win80 | ||
GITHUB | ||
remote: fsprojects/FSharp.TypeProviders.StarterPack | ||
specs: | ||
src/DebugProvidedTypes.fs (66277f5f3b881706a2b7af30e0aedee3feee9bc0) | ||
src/ProvidedTypes.fs (66277f5f3b881706a2b7af30e0aedee3feee9bc0) | ||
src/ProvidedTypes.fsi (66277f5f3b881706a2b7af30e0aedee3feee9bc0) | ||
src/DebugProvidedTypes.fs (70080986a4226e8218af09386cceb42e7a0ff00e) | ||
src/ProvidedTypes.fs (70080986a4226e8218af09386cceb42e7a0ff00e) | ||
src/ProvidedTypes.fsi (70080986a4226e8218af09386cceb42e7a0ff00e) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.