From f346c5d12bb3ac275e24665bc4d0da7a18b157bb Mon Sep 17 00:00:00 2001 From: Peter Blazejewicz Date: Wed, 4 May 2016 22:02:34 +0200 Subject: [PATCH] Fix sections in starter web template - section ordering The sections are now sorted the same way as in aspnet/Templates --- templates/projects/webbasic/project.json | 30 ++++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/templates/projects/webbasic/project.json b/templates/projects/webbasic/project.json index 3e35d833..05c41982 100755 --- a/templates/projects/webbasic/project.json +++ b/templates/projects/webbasic/project.json @@ -1,9 +1,4 @@ { - "compilationOptions": { - "emitEntryPoint": true, - "preserveCompilationContext": true - }, - "dependencies": { "Microsoft.NETCore.App": { "version": "1.0.0-rc2-24008", @@ -25,6 +20,17 @@ "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0-rc2-20581" }, + "tools": { + "dotnet-razor-tooling": { + "version": "1.0.0-rc2-20581", + "imports": "portable-net45+win8+dnxcore50" + }, + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-rc2-20581", + "imports": "portable-net45+win8+dnxcore50" + } + }, + "frameworks": { "netcoreapp1.0": { "imports": [ @@ -35,15 +41,9 @@ } }, - "tools": { - "Microsoft.AspNetCore.Server.IISIntegration.Tools": { - "version": "1.0.0-rc2-20581", - "imports": "portable-net45+win8+dnxcore50" - }, - "dotnet-razor-tooling": { - "version": "1.0.0-rc2-20581", - "imports": "portable-net45+win8+dnxcore50" - } + "compilationOptions": { + "emitEntryPoint": true, + "preserveCompilationContext": true }, "runtimeOptions": { @@ -65,7 +65,7 @@ "scripts": { "prepublish": [ "npm install", "bower install"<% if(!grunt){ %>, "gulp clean", "gulp min"<% } %> ], - "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath%" ] + "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ] }, "tooling": {