Skip to content

Commit 3faa129

Browse files
committed
Updated MSBuild version
1 parent 84e5756 commit 3faa129

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

src/fsharp/FSharp.Compiler.Service.ProjectCracker.netcore/ProjectCracker.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type ProjectCracker =
2929
}
3030

3131
let arguments = [|
32-
yield @"""" + projectFileName + @""""
32+
yield projectFileName
3333
yield enableLogging.ToString()
3434
for k, v in properties do
3535
yield k

src/fsharp/FSharp.Compiler.Service.ProjectCracker.netcore/project.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@
3232
"type": "platform",
3333
"version": "1.0.0-rc2-3002702"
3434
},
35-
"Microsoft.Build": "0.1.0-preview-00022",
36-
"Microsoft.Build.Framework": "0.1.0-preview-00022",
37-
"Microsoft.Build.Tasks.Core": "0.1.0-preview-00022",
38-
"Microsoft.Build.Utilities.Core": "0.1.0-preview-00022",
35+
"Microsoft.Build": "0.1.0-preview-*",
36+
"Microsoft.Build.Framework": "0.1.0-preview-*",
37+
"Microsoft.Build.Targets": "0.1.0-preview-*",
38+
"Microsoft.Build.Tasks.Core": "0.1.0-preview-*",
39+
"Microsoft.Build.Utilities.Core": "0.1.0-preview-*",
3940
"System.Runtime.Serialization.Json": "4.0.2-rc2-*",
4041
"Microsoft.FSharp.Core.netcore": "1.0.0-*",
4142
"FSharp.Compiler.Service.netcore": "1.0.0-*",

tests/service/ProjectAnalysisTests.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4431,7 +4431,7 @@ module Project35b =
44314431
let projPath = Path.ChangeExtension(fileName1, ".fsproj")
44324432
let dllPath = Path.ChangeExtension(fileName1, ".dll")
44334433
let args = mkProjectCommandLineArgs(dllPath, fileNames)
4434-
let args2 = Array.append args [| "-r: notexist.dll" |]
4434+
let args2 = Array.append args [| "-r:notexist.dll" |]
44354435
let options = checker.GetProjectOptionsFromCommandLineArgs (projPath, args2)
44364436
#else
44374437
let options = checker.GetProjectOptionsFromScript(fileName1, fileSource1) |> Async.RunSynchronously

0 commit comments

Comments
 (0)