forked from dotnet/AspNetCore.Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to reflect output of dotnet new (dotnet#1631)
* 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
1 parent
3e4ba2b
commit 2312353
Showing
2 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} |