diff --git a/src/fsharp/FSharp.Compiler.Service.MSBuild.v12/project.json b/src/fsharp/FSharp.Compiler.Service.MSBuild.v12/project.json index 7e75972caa..8bbd9b07ef 100644 --- a/src/fsharp/FSharp.Compiler.Service.MSBuild.v12/project.json +++ b/src/fsharp/FSharp.Compiler.Service.MSBuild.v12/project.json @@ -1,5 +1,5 @@ { - "version": "8.0.0", + "version": "9.0.1", "buildOptions": { "debugType": "portable", "compilerName": "fsc", @@ -33,7 +33,7 @@ "System.Reflection.Metadata": "1.4.1-beta-24227-04", "System.Diagnostics.Process": "4.1.0", "FSharp.Compiler.Service": { - "version": "8.0.0", + "version": "9.0.1", "target": "project" } }, diff --git a/src/fsharp/FSharp.Compiler.Service.ProjectCracker/project.json b/src/fsharp/FSharp.Compiler.Service.ProjectCracker/project.json index 7d21b7a7a5..34424350a8 100644 --- a/src/fsharp/FSharp.Compiler.Service.ProjectCracker/project.json +++ b/src/fsharp/FSharp.Compiler.Service.ProjectCracker/project.json @@ -1,5 +1,5 @@ { - "version": "8.0.0", + "version": "9.0.1", "buildOptions": { "debugType": "portable", "emitEntryPoint": false, @@ -36,7 +36,7 @@ "Microsoft.Build.Utilities.Core": "14.3.0", "System.Runtime.Serialization.Json": "4.0.2", "FSharp.Compiler.Service": { - "version": "8.0.0", + "version": "9.0.1", "target": "project" } }, diff --git a/src/fsharp/FSharp.Compiler.Service/project.json b/src/fsharp/FSharp.Compiler.Service/project.json index 5fb0434039..8360251b78 100644 --- a/src/fsharp/FSharp.Compiler.Service/project.json +++ b/src/fsharp/FSharp.Compiler.Service/project.json @@ -1,5 +1,5 @@ { - "version": "8.0.0", + "version": "9.0.1", "buildOptions": { "debugType": "portable", "compilerName": "fsc", diff --git a/tests/service/ProjectOptionsTests.fs b/tests/service/ProjectOptionsTests.fs index 7f6c0623f1..74769224e3 100644 --- a/tests/service/ProjectOptionsTests.fs +++ b/tests/service/ProjectOptionsTests.fs @@ -448,7 +448,8 @@ let ``Test OtherOptions order for GetProjectOptionsFromScript`` () = projOpts.OtherOptions |> Array.map (fun s -> if s.StartsWith "--" then s else Path.GetFileNameWithoutExtension s) - |> shouldEqual expected2 + |> Array.sort + |> shouldEqual (Array.sort expected2) let otherArgs = [|"--noframework"; "--warn:3"; "System.Numerics"; "mscorlib"; "FSharp.Core"; "System"; "System.Xml"; "System.Runtime.Remoting"; "System.Runtime.Serialization.Formatters.Soap"; "System.Data"; "System.Drawing"; "System.Core"; "System.Runtime"; "System.Linq"; "System.Reflection"; "System.Linq.Expressions"; "System.Threading.Tasks"; "System.IO"; "System.Net.Requests"; "System.Collections"; "System.Runtime.Numerics"; "System.Threading"; "System.Web"; "System.Web.Services"; "System.Windows.Forms"; "FSharp.Compiler.Interactive.Settings"|] test "Main1" otherArgs test "Main2" otherArgs