We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea3129 commit f6b4d17Copy full SHA for f6b4d17
.travis.yml
@@ -10,7 +10,6 @@ matrix:
10
- os: osx # OSX 10.12
11
osx_image: xcode9.1
12
dotnet: 2.0.0
13
- dist: trusty
14
mono: latest
15
sudo: false
16
build.fsx
@@ -60,9 +60,9 @@ Target "Restore" (fun _ ->
60
// Build library & test project
61
62
Target "Build" (fun _ ->
63
- DotNetCli.Build (fun p ->
64
- { p with Project = solutionFile })
65
-)
+ !! solutionFile
+ |> MSBuild null "Rebuild" [("Configuration", "Release")]
+ |> ignore)
66
67
// --------------------------------------------------------------------------------------
68
// Run the unit tests using test runner
0 commit comments