Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Fix sections in starter web template #664

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions templates/projects/webbasic/project.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
{
"compilationOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},

"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-24008",
Expand All @@ -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": [
Expand All @@ -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": {
Expand All @@ -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": {
Expand Down