Skip to content

Commit 399b274

Browse files
authored
Merge pull request #113 from wilsoncg/master
mono build fix attempt
2 parents aae881b + d6bb85c commit 399b274

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ language: csharp
22

33
matrix:
44
include:
5-
- os: linux # Ubuntu 14.04
6-
dist: trusty
5+
- os: linux
6+
dist: xenial # Ubuntu 16.04 https://docs.travis-ci.com/user/reference/linux/
77
sudo: false
88
mono: latest
99
dotnet: 3.0.100
10-
- os: osx # OSX 10.12
11-
osx_image: xcode9.1
10+
- os: osx
11+
osx_image: xcode9.3 # OSX 10.13 https://docs.travis-ci.com/user/reference/osx/#using-macos
1212
dotnet: 3.0.100
1313
mono: latest
1414
sudo: false

build.fsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// --------------------------------------------------------------------------------------
1+
// --------------------------------------------------------------------------------------
22
// FAKE build script
33
// --------------------------------------------------------------------------------------
44

@@ -78,10 +78,10 @@ Target "AssemblyInfo" (fun _ ->
7878
Attribute.FileVersion release.AssemblyVersion ]
7979

8080
let getProjectDetails projectPath =
81-
let projectName = System.IO.Path.GetFileNameWithoutExtension(projectPath)
81+
let projectName = System.IO.Path.GetFileNameWithoutExtension(projectPath: string)
8282
( projectPath,
8383
projectName,
84-
System.IO.Path.GetDirectoryName(projectPath),
84+
System.IO.Path.GetDirectoryName(projectPath: string),
8585
(getAssemblyInfoAttributes projectName)
8686
)
8787

0 commit comments

Comments
 (0)