Skip to content

Commit

Permalink
Updated to reflect output of dotnet new (dotnet#1631)
Browse files Browse the repository at this point in the history
* Updated to reflect output of dotnet new

dotnet new seems to produce different output now, this is how it looks from a fresh install this AM

* Updated emphasis of project.json

Updated emphasis of project.json to reflect changes in project.json
  • Loading branch information
Lewiscowles1986 authored and Rachel Appel committed Jul 7, 2016
1 parent 3e4ba2b commit 2312353
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion aspnet/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Getting Started

.. literalinclude:: getting-started/sample/aspnetcoreapp/project.json
:language: c#
:emphasize-lines: 11
:emphasize-lines: 15

4. Restore the packages:

Expand Down
20 changes: 12 additions & 8 deletions aspnet/getting-started/sample/aspnetcoreapp/project.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
},
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0"
},
"dependencies": {},
"frameworks": {
"netcoreapp1.0": { }
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
},
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0"
},
"imports": "dnxcore50"
}
}
}

0 comments on commit 2312353

Please sign in to comment.