diff --git a/templates/projects/emptyweb/project.json b/templates/projects/emptyweb/project.json index 0b0b362b..dab2505f 100644 --- a/templates/projects/emptyweb/project.json +++ b/templates/projects/emptyweb/project.json @@ -1,10 +1,4 @@ - { - "compilationOptions": { - "emitEntryPoint": true, - "preserveCompilationContext": true - }, - "dependencies": { "Microsoft.NETCore.App": { "version": "1.0.0-rc2-24008", @@ -14,6 +8,13 @@ "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-20581" }, + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-rc2-20581", + "imports": "portable-net45+win8+dnxcore50" + } + }, + "frameworks": { "netcoreapp1.0": { "imports": [ @@ -24,15 +25,9 @@ } }, - "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": { - "version": "1.0.0-rc2-20581", - "imports": "portable-net45+win8+dnxcore50" - } - }, - - "tooling": { - "defaultNamespace": "<%= namespace %>" + "compilationOptions": { + "emitEntryPoint": true, + "preserveCompilationContext": true }, "runtimeOptions": { @@ -51,6 +46,10 @@ ], "scripts": { - "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath%" ] + "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ] + }, + + "tooling": { + "defaultNamespace": "<%= namespace %>" } }