Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@
{
"version": "1.0.0-*",
"version": "1.0.0-alpha-00001",
"title": "FSharp.Compiler.Service.ProjectCracker",
"authors": [
"Microsoft Corporation",
"Robin Neatherway",
],
"copyright": "",
"description": "Adds F# project cracking capabilities.",
"packOptions": {
"projectUrl": "https://github.com/fsharp/FSharp.Compiler.Service",
"licenseUrl": "https://github.com/fsharp/FSharp.Compiler.Service/blob/master/LICENSE",
"iconUrl": "https://raw.github.com/fsharp/FSharp.Compiler.Service/master/misc/logo.png",
"summary": "Cracking projects",
"tags": [
"F# fsharp msbuild editor"
],
"releaseNotes": "",
},
"buildOptions": {
"debugType": "portable",
"debugType": "portable",
"emitEntryPoint": true,
"compilerName": "fsc",
"compile": {
"includeFiles": [
"../FSharp.Compiler.Service.ProjectCrackerTool/ProjectCrackerOptions.fs",
"../FSharp.Compiler.Service.ProjectCrackerTool/ProjectCrackerTool.fs",
"../FSharp.Compiler.Service.ProjectCrackerTool/ProjectCrackerOptions.fs",
"../FSharp.Compiler.Service.ProjectCrackerTool/ProjectCrackerTool.fs",
"ProjectCracker.fs",
"Program.fs",
],
Expand All @@ -18,6 +35,7 @@
],
"nowarn": [
"44",
"2003",
],
"xmlDoc": true,
"delaySign": true,
Expand All @@ -38,8 +56,8 @@
"Microsoft.Build.Tasks.Core": "0.1.0-preview-*",
"Microsoft.Build.Utilities.Core": "0.1.0-preview-*",
"System.Runtime.Serialization.Json": "4.0.2-rc2-*",
"Microsoft.FSharp.Core.netcore": "1.0.0-*",
"FSharp.Compiler.Service.netcore": "1.0.0-*",
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-*",
"FSharp.Compiler.Service.netcore": "1.0.0-alpha-*",
},
"tools": {
"dotnet-compile-fsc": {
Expand All @@ -54,7 +72,7 @@
"frameworks": {
"netstandard1.5": {
"imports": [
"portable-net45+win8",
"portable-net45+win81",
"dnxcore50"
]
}
Expand Down
28 changes: 24 additions & 4 deletions src/fsharp/FSharp.Compiler.Service.netcore/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
{
"version": "1.0.0-*",
"version": "1.0.0-alpha-00001",
"title": "FSharp.Compiler.Service",
"authors": [
"Microsoft Corporation",
"Dave Thomas",
"Anh-Dung Phan",
"Tomas Petricek",
],
"copyright": "",
"description": "The F# compiler services package contains a custom build of the F# compiler that exposes additional functionality for implementing F# language bindings, additional tools based on the compiler or refactoring tools. The package also includes F# interactive service that can be used for embedding F# scripting into your applications.",
"packOptions": {
"projectUrl": "https://github.com/fsharp/FSharp.Compiler.Service",
"licenseUrl": "https://github.com/fsharp/FSharp.Compiler.Service/blob/master/LICENSE",
"iconUrl": "https://raw.github.com/fsharp/FSharp.Compiler.Service/master/misc/logo.png",
"summary": "F# compiler services for creating IDE tools, language extensions and for F# embedding.",
"tags": [
"F# fsharp interactive compiler editor"
],
"releaseNotes": "",
},
"buildOptions": {
"debugType": "portable",
"compilerName": "fsc",
Expand Down Expand Up @@ -248,7 +267,8 @@
"61",
"75",
"62",
"9"
"9",
"2003",
],
"xmlDoc": true,
"delaySign": true,
Expand All @@ -265,7 +285,7 @@
"version": "1.0.0-rc2-3002702"
},
"System.Diagnostics.TraceSource": "4.0.0-rc2-*",
"Microsoft.FSharp.Core.netcore": "1.0.0-*",
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-*",
},
"tools": {
"dotnet-fssrgen": "3.0.1",
Expand All @@ -281,7 +301,7 @@
"frameworks": {
"netstandard1.5": {
"imports": [
"portable-net45+win8",
"portable-net45+win81",
"dnxcore50"
]
}
Expand Down
8 changes: 4 additions & 4 deletions tests/FSharp.Compiler.Service.Tests.netcore/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@
"type": "platform",
"version": "1.0.0-rc2-3002702"
},
"Microsoft.FSharp.Core.netcore": "1.0.0-*",
"NUnitLite": "3.2.1",
"FSharp.Compiler.Service.netcore": "1.0.0-*",
"FSharp.Compiler.Service.ProjectCracker.netcore": "1.0.0-*",
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-*",
"FSharp.Compiler.Service.netcore": "1.0.0-alpha-*",
"FSharp.Compiler.Service.ProjectCracker.netcore": "1.0.0-alpha-*",
},
"tools": {
"dotnet-compile-fsc": {
Expand All @@ -69,7 +69,7 @@
"frameworks": {
"netstandard1.5": {
"imports": [
"portable-net45+win8",
"portable-net45+win81",
"dnxcore50"
]
}
Expand Down