Skip to content

Commit

Permalink
Fix content layout of empty web app project.json (OmniSharp#669)
Browse files Browse the repository at this point in the history
- sections layout
- scripts section content update

Thanks!
  • Loading branch information
peterblazejewicz committed May 14, 2016
1 parent 11fd7f3 commit 2033e7e
Showing 1 changed file with 15 additions and 16 deletions.
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 %>"
}
}

0 comments on commit 2033e7e

Please sign in to comment.