Skip to content

Commit b8e6f9a

Browse files
committed
mono build fix
1 parent aae881b commit b8e6f9a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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)