File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ language: csharp
22
33matrix :
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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments