diff --git a/src/dotnet/commands/dotnet-new/CSharp_Console/project.json.pretemplate b/src/dotnet/commands/dotnet-new/CSharp_Console/project.json.pretemplate index 88f99d13e..8429abb78 100644 --- a/src/dotnet/commands/dotnet-new/CSharp_Console/project.json.pretemplate +++ b/src/dotnet/commands/dotnet-new/CSharp_Console/project.json.pretemplate @@ -1,6 +1,6 @@ { "version": "1.0.0-*", - "compilationOptions": { + "buildOptions": { "emitEntryPoint": true }, "dependencies": { diff --git a/src/dotnet/commands/dotnet-new/FSharp_Console/project.json.pretemplate b/src/dotnet/commands/dotnet-new/FSharp_Console/project.json.pretemplate index e527b7159..792f42989 100644 --- a/src/dotnet/commands/dotnet-new/FSharp_Console/project.json.pretemplate +++ b/src/dotnet/commands/dotnet-new/FSharp_Console/project.json.pretemplate @@ -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": {