Updated dotnet-new templates to new project.json schema.

This commit is contained in:
dasMulli 2016-05-03 23:06:54 +02:00
parent 69a32cc010
commit d39a905a5b
2 changed files with 9 additions and 7 deletions

View file

@ -1,6 +1,6 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true
}, },
"dependencies": { "dependencies": {

View file

@ -1,12 +1,14 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "buildOptions": {
"emitEntryPoint": true "emitEntryPoint": true,
"compilerName": "fsc",
"compile": {
"includeFiles": [
"Program.fs"
]
}
}, },
"compilerName": "fsc",
"compileFiles": [
"Program.fs"
],
"dependencies": { "dependencies": {
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160316", "Microsoft.FSharp.Core.netcore": "1.0.0-alpha-160316",
"Microsoft.NETCore.App": { "Microsoft.NETCore.App": {