Skip to content

Commit 7d72269

Browse files
committed
use msbuild with .net core 1.0 rtm deps
1 parent 83b7c2b commit 7d72269

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

src/fsharp/FSharp.Compiler.Service.ProjectCracker.netcore/NuGet.Config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22
<configuration>
33
<packageSources>
44
<add key="fsharp-netcore-preview2" value="https://www.myget.org/F/fsharp-netcoresdk-preview2-betatest/api/v3/index.json" />
5+
<!-- MSBuild -->
6+
<add key="dotnet-buildtools" value="https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json" />
57
</packageSources>
68
</configuration>

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "FSharp.Compiler.Service.ProjectCracker",
44
"authors": [
55
"Microsoft Corporation",
6-
"Robin Neatherway",
6+
"Robin Neatherway"
77
],
88
"copyright": "",
99
"description": "Adds F# project cracking capabilities.",
@@ -15,7 +15,7 @@
1515
"tags": [
1616
"F# fsharp msbuild editor"
1717
],
18-
"releaseNotes": "",
18+
"releaseNotes": ""
1919
},
2020
"buildOptions": {
2121
"debugType": "portable",
@@ -26,38 +26,38 @@
2626
"../FSharp.Compiler.Service.ProjectCrackerTool/ProjectCrackerOptions.fs",
2727
"../FSharp.Compiler.Service.ProjectCrackerTool/ProjectCrackerTool.fs",
2828
"ProjectCracker.fs",
29-
"Program.fs",
30-
],
29+
"Program.fs"
30+
]
3131
},
3232
"define": [
3333
"DOTNETCORE",
34-
"TRACE",
34+
"TRACE"
3535
],
3636
"nowarn": [
3737
"44",
38-
"2003",
38+
"2003"
3939
],
4040
"xmlDoc": true,
4141
"delaySign": true,
4242
"warningsAsErrors": true,
4343
"additionalArguments": [
4444
"--fullpaths",
4545
"--flaterrors",
46-
"--warnon:1182",
47-
],
46+
"--warnon:1182"
47+
]
4848
},
4949
"dependencies": {
5050
"Microsoft.NETCore.App": {
5151
"type": "platform",
5252
"version": "1.0.0"
5353
},
54-
"Microsoft.Build": "0.1.0-preview-*",
55-
"Microsoft.Build.Framework": "0.1.0-preview-*",
56-
"Microsoft.Build.Tasks.Core": "0.1.0-preview-*",
57-
"Microsoft.Build.Utilities.Core": "0.1.0-preview-*",
58-
"System.Runtime.Serialization.Json": "4.0.2-rc2-*",
59-
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160509",
60-
"FSharp.Compiler.Service.netcore": "1.0.0-alpha-*",
54+
"Microsoft.Build": "0.1.0-preview-00028-*",
55+
"Microsoft.Build.Framework": "0.1.0-preview-00028-*",
56+
"Microsoft.Build.Tasks.Core": "0.1.0-preview-00028-*",
57+
"Microsoft.Build.Utilities.Core": "0.1.0-preview-00028-*",
58+
"System.Runtime.Serialization.Json": "4.0.2",
59+
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-*",
60+
"FSharp.Compiler.Service.netcore": "1.0.0-alpha-*"
6161
},
6262
"tools": {
6363
"dotnet-compile-fsc": {

0 commit comments

Comments
 (0)