Skip to content

Commit cc7a184

Browse files
authored
Merge pull request #673 from nosami/master
Fix compilation error
2 parents c9fdd5a + f064ca9 commit cc7a184

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/service/ProjectOptionsTests.fs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ let ``Project file parsing example 1 Default configuration relative path`` () =
8989

9090
[<Test>]
9191
let ``Project file parsing VS2013_FSharp_Portable_Library_net45``() =
92-
if not runningOnMno then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
92+
if not runningOnMono then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
9393

9494
let projectFile = __SOURCE_DIRECTORY__ + @"/../projects/Sample_VS2013_FSharp_Portable_Library_net45/Sample_VS2013_FSharp_Portable_Library_net45.fsproj"
9595
let options = ProjectCracker.GetProjectOptionsFromProjectFile(projectFile, [])
@@ -105,7 +105,7 @@ let ``Project file parsing VS2013_FSharp_Portable_Library_net45``() =
105105

106106
[<Test>]
107107
let ``Project file parsing Sample_VS2013_FSharp_Portable_Library_net451_adjusted_to_profile78``() =
108-
if not runningOnMno then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
108+
if not runningOnMono then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
109109

110110
let projectFile = __SOURCE_DIRECTORY__ + @"/../projects/Sample_VS2013_FSharp_Portable_Library_net451_adjusted_to_profile78/Sample_VS2013_FSharp_Portable_Library_net451.fsproj"
111111
Directory.SetCurrentDirectory(__SOURCE_DIRECTORY__ + @"/../projects/Sample_VS2013_FSharp_Portable_Library_net451_adjusted_to_profile78/")
@@ -246,7 +246,7 @@ let ``Project file parsing -- multi language project``() =
246246

247247
[<Test>]
248248
let ``Project file parsing -- PCL profile7 project``() =
249-
if not runningOnMno then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
249+
if not runningOnMono then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
250250

251251

252252
let f = normalizePath (__SOURCE_DIRECTORY__ + @"/../projects/Sample_VS2013_FSharp_Portable_Library_net45/Sample_VS2013_FSharp_Portable_Library_net45.fsproj")
@@ -296,7 +296,7 @@ let ``Project file parsing -- PCL profile7 project``() =
296296

297297
[<Test>]
298298
let ``Project file parsing -- PCL profile78 project``() =
299-
if not runningOnMno then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
299+
if not runningOnMono then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
300300

301301

302302
let f = normalizePath (__SOURCE_DIRECTORY__ + @"/../projects/Sample_VS2013_FSharp_Portable_Library_net451_adjusted_to_profile78/Sample_VS2013_FSharp_Portable_Library_net451.fsproj")
@@ -337,7 +337,7 @@ let ``Project file parsing -- PCL profile78 project``() =
337337

338338
[<Test>]
339339
let ``Project file parsing -- PCL profile259 project``() =
340-
if not runningOnMno then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
340+
if not runningOnMono then // Disabled on Mono due to lack of installed PCL reference libraries - the modern way is to reference the FSHarp.Core nuget package so this is ok
341341
let f = normalizePath (__SOURCE_DIRECTORY__ + @"/../projects/Sample_VS2013_FSharp_Portable_Library_net451_adjusted_to_profile259/Sample_VS2013_FSharp_Portable_Library_net451.fsproj")
342342

343343
let options = ProjectCracker.GetProjectOptionsFromProjectFile(f)

0 commit comments

Comments
 (0)