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

Fix content layout of empty web app project.json #669

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
31 changes: 15 additions & 16 deletions templates/projects/emptyweb/project.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@

{
"compilationOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
},

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