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-*",
"compilationOptions": {
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {

View file

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