Skip to content

Commit f6b4d17

Browse files
author
Eirik Tsarpalis
committed
use msbuild for the build target
1 parent 2ea3129 commit f6b4d17

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ matrix:
1010
- os: osx # OSX 10.12
1111
osx_image: xcode9.1
1212
dotnet: 2.0.0
13-
dist: trusty
1413
mono: latest
1514
sudo: false
1615

build.fsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ Target "Restore" (fun _ ->
6060
// Build library & test project
6161

6262
Target "Build" (fun _ ->
63-
DotNetCli.Build (fun p ->
64-
{ p with Project = solutionFile })
65-
)
63+
!! solutionFile
64+
|> MSBuild null "Rebuild" [("Configuration", "Release")]
65+
|> ignore)
6666

6767
// --------------------------------------------------------------------------------------
6868
// Run the unit tests using test runner

0 commit comments

Comments
 (0)