dotnet-installer/src/dotnet/commands/dotnet-new/FSharp_Console/project.json.template
Andrew Stanton-Nurse 43512b8973 add support for type: platform
also some refactoring of DependencyContext to properly handle
placeholders in 'runtimeTargets'.
2016-03-23 21:53:14 -07:00

19 lines
427 B
Text

{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"compilerName": "fsc",
"compileFiles": [
"Program.fs"
],
"dependencies": {
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160316",
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-rc2-23911" }
},
"frameworks": {
"netstandard1.5": {
"imports": [ "portable-net45+win8", "dnxcore50" ]
}
}
}