-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update build script to run tests, updating packages. #416
Changes from all commits
f96ab1a
c5d8779
e1160c2
8c7f682
63086fa
52778a7
57ecd75
c34a568
1120459
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,18 @@ | ||
source http://nuget.org/api/v2 | ||
redirects: on | ||
source https://api.nuget.org/v3/index.json | ||
redirects: force, lowest_matching: true | ||
|
||
nuget FSharp.Data | ||
nuget FAKE | ||
nuget CommandLineParser | ||
nuget FSharp.Core | ||
nuget Microsoft.AspNet.Razor | ||
nuget RazorEngine | ||
nuget NUnit ~> 2 | ||
nuget NUnit.Runners ~> 2 | ||
nuget NUnit | ||
nuget NUnit.Runners | ||
nuget NuGet.CommandLine | ||
nuget FSharp.Compiler.Service == 2.0.0.6 | ||
// See http://fsprojects.github.io/Paket/nuget-dependencies.html | ||
// This basically means we need the lowest version for its dependencies (FSharp.Compiler.Service) | ||
// Otherwise we get runtime errors without binding redirects | ||
// (which we cannot control running as part of a build script). | ||
// See https://github.com/tpetricek/FSharp.Formatting/issues/277 as well. | ||
nuget FSharpVSPowerTools.Core !>= 0 | ||
nuget ILRepack | ||
|
||
github matthid/Yaaf.FSharp.Scripting src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs | ||
github forki/FsUnit FsUnit.fs | ||
|
||
source http://nuget.org/api/v2 | ||
nuget CommandLineParser |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,36 @@ | ||
REDIRECTS: ON | ||
NUGET | ||
remote: http://www.nuget.org/api/v2 | ||
specs: | ||
remote: http://api.nuget.org/v3/index.json | ||
CommandLineParser (1.9.71) | ||
FAKE (4.22.8) | ||
FSharp.Compiler.Service (2.0.0.6) | ||
FAKE (4.36) | ||
FSharp.Compiler.Service (3.0) | ||
FSharp.Core (4.0.0.1) | ||
FSharp.Data (2.2.5) | ||
Zlib.Portable (>= 1.10) - framework: portable-net40+sl50+wp80+win80 | ||
FSharpVSPowerTools.Core (2.3) | ||
FSharp.Compiler.Service (>= 2.0.0.3) | ||
FSharp.Data (2.3.2) | ||
Zlib.Portable (>= 1.11) - framework: portable-net45+sl5+win8, portable-net45+win8, portable-net45+win8+wp8+wpa81 | ||
FSharpVSPowerTools.Core (2.4) | ||
FSharp.Compiler.Service (>= 2.0.0.8) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would expect paket to use FCS 2.0.0.8 instead of 3.0 (see above). So something has gone wrong. And historically we can tell it always breaks for someone if we don't get the versions correct... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
ILRepack (2.0.10) | ||
Microsoft.AspNet.Razor (3.2.3) | ||
NuGet.CommandLine (3.3) | ||
NUnit (2.6.4) | ||
NUnit.Runners (2.6.4) | ||
RazorEngine (3.7.7) | ||
Microsoft.AspNet.Razor (3.2.3) - framework: >= net45 | ||
NuGet.CommandLine (3.4.3) | ||
NUnit (3.4.1) | ||
NUnit.ConsoleRunner (3.4.1) | ||
NUnit.Extension.NUnitProjectLoader (3.4.1) | ||
NUnit.Extension.NUnitV2Driver (3.4.1) | ||
NUnit.Extension.NUnitV2ResultWriter (3.4.1) | ||
NUnit.Extension.TeamCityEventListener (1.0.1) | ||
NUnit.Extension.VSProjectLoader (3.4.1) | ||
NUnit.Runners (3.4.1) | ||
NUnit.ConsoleRunner (>= 3.4.1) | ||
NUnit.Extension.NUnitProjectLoader (>= 3.4.1) | ||
NUnit.Extension.NUnitV2Driver (>= 3.4.1) | ||
NUnit.Extension.NUnitV2ResultWriter (>= 3.4.1) | ||
NUnit.Extension.TeamCityEventListener (>= 1.0.1) | ||
NUnit.Extension.VSProjectLoader (>= 3.4.1) | ||
RazorEngine (3.9) | ||
Microsoft.AspNet.Razor (>= 3.0) - framework: >= net45 | ||
Microsoft.AspNet.Razor (2.0.30506) - framework: net40 | ||
Zlib.Portable (1.11) - framework: portable-net40+sl50+wp80+win80 | ||
Zlib.Portable (1.11) - framework: portable-net45+sl5+win8, portable-net45+win8, portable-net45+win8+wp8+wpa81 | ||
GITHUB | ||
remote: matthid/Yaaf.FSharp.Scripting | ||
specs: | ||
src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs (48789eeb63382a6934966472e270e87880cb49ed) | ||
src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs (5356179f795761f22e28ef25e3799084eb71dba7) | ||
remote: forki/FsUnit | ||
FsUnit.fs (f536bd5ed0eba8b38d2b01ae79d64e4e14fbd0a6) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
FSharp.Compiler.Service | ||
FSharpVSPowerTools.Core | ||
FSharpVSPowerTools.Core |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
FSharp.Compiler.Service | ||
Microsoft.AspNet.Razor | ||
RazorEngine | ||
RazorEngine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Historically we had a lot of problems with this dependency. So ideally we would like to keep some comment here.