File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
src/fsharp/FSharp.Compiler.Service.ProjectCracker.netcore Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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-*" ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments