Skip to content

Commit bed62ac

Browse files
authored
Merge pull request #622 from ncave/netcore
Updated Dotnet Core targets and references
2 parents 670e657 + e62d4d8 commit bed62ac

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

build.fsx

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ let assertExitCodeZero x = if x = 0 then () else failwithf "Command failed with
226226
let runCmdIn workDir exe = Printf.ksprintf (fun args -> Shell.Exec(exe, args, workDir) |> assertExitCodeZero)
227227
let run exe = runCmdIn "." exe
228228

229-
Target "DotnetCoreCodeGen" (fun _ ->
229+
Target "CodeGen.NetCore" (fun _ ->
230230
let lexArgs = "--lexlib Internal.Utilities.Text.Lexing"
231231
let yaccArgs = "--internal --parslib Internal.Utilities.Text.Parsing"
232232
let module1 = "--module Microsoft.FSharp.Compiler.AbstractIL.Internal.AsciiParser"
@@ -284,20 +284,26 @@ Target "Nuget.AddNetCore" (fun _ ->
284284

285285
Target "Prepare" DoNothing
286286
Target "PrepareRelease" DoNothing
287-
Target "All" DoNothing
288287
Target "Release" DoNothing
289288
Target "CreatePackage" DoNothing
289+
Target "All" DoNothing
290+
Target "All.NetCore" DoNothing
291+
292+
"Clean"
293+
==> "AssemblyInfo"
294+
==> "CodeGen.NetCore"
295+
==> "Build.NetCore"
296+
==> "RunTests.NetCore"
297+
==> "All.NetCore"
290298

291299
"Clean"
292300
=?> ("BuildVersion", isAppVeyorBuild)
293301
==> "AssemblyInfo"
294302
==> "GenerateFSIStrings"
295303
==> "Prepare"
296304
==> "Build"
297-
=?> ("DotnetCoreCodeGen", isDotnetSDKInstalled)
298-
=?> ("Build.NetCore", isDotnetSDKInstalled)
299305
==> "RunTests"
300-
=?> ("RunTests.NetCore", isDotnetSDKInstalled)
306+
=?> ("All.NetCore", isDotnetSDKInstalled)
301307
==> "All"
302308

303309
"All"

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@
2929
]
3030
},
3131
"dependencies": {
32-
"Microsoft.Build": "0.1.0-preview-00028-160627",
33-
"Microsoft.Build.Framework": "0.1.0-preview-00028-160627",
34-
"Microsoft.Build.Tasks.Core": "0.1.0-preview-00028-160627",
35-
"Microsoft.Build.Utilities.Core": "0.1.0-preview-00028-160627",
36-
"System.Runtime.Serialization.Json": "4.0.2",
3732
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-*",
33+
"Microsoft.Build": "0.1.0-preview-00029-160805",
34+
"Microsoft.Build.Framework": "0.1.0-preview-00029-160805",
35+
"Microsoft.Build.Tasks.Core": "0.1.0-preview-00029-160805",
36+
"Microsoft.Build.Utilities.Core": "0.1.0-preview-00029-160805",
37+
"System.Runtime.Serialization.Json": "4.0.2",
3838
"FSharp.Compiler.Service": {
39-
"version": "1.0.0-alpha-*",
39+
"version": "6.0.1",
4040
"target": "project"
4141
}
4242
},

src/fsharp/FSharp.Compiler.Service.ProjectCrackerTool/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
},
1919
"dependencies": {
2020
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-*",
21-
"Microsoft.Build": "0.1.0-preview-00028-160627",
22-
"Microsoft.Build.Framework": "0.1.0-preview-00028-160627",
23-
"Microsoft.Build.Tasks.Core": "0.1.0-preview-00028-160627",
24-
"Microsoft.Build.Utilities.Core": "0.1.0-preview-00028-160627",
21+
"Microsoft.Build": "0.1.0-preview-00029-160805",
22+
"Microsoft.Build.Framework": "0.1.0-preview-00029-160805",
23+
"Microsoft.Build.Tasks.Core": "0.1.0-preview-00029-160805",
24+
"Microsoft.Build.Utilities.Core": "0.1.0-preview-00029-160805",
2525
"System.Runtime.Serialization.Json": "4.0.2"
2626
},
2727
"frameworks": {

0 commit comments

Comments
 (0)