Created
June 29, 2015 08:46
-
-
Save AndersNS/ee066caa01701f3a4916 to your computer and use it in GitHub Desktop.
json vs yaml for the MusicStores project.json https://github.com/aspnet/MusicStore/blob/master/src/MusicStore.Spa/project.json
This file contains hidden or 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
{ | |
"webroot": "wwwroot", | |
"exclude": [ | |
"wwwroot", | |
"bower_components", | |
"node_modules", | |
"grunt" | |
], | |
"publishExclude": [ | |
"bower.json", | |
"package.json", | |
"gruntfile.js", | |
"bower_components", | |
"node_modules", | |
"grunt" | |
], | |
"authors": [ | |
"Microsoft" | |
], | |
"description": "Music store application on K as a SPA", | |
"compilationOptions": { | |
"define": [ | |
"DEBUG" | |
] | |
}, | |
"dependencies": { | |
"Kestrel": "1.0.0-beta4", | |
"Microsoft.AspNet.Server.IIS": "1.0.0-beta4", | |
"Microsoft.AspNet.Mvc": "6.0.0-beta4", | |
"Microsoft.AspNet.Server.WebListener": "1.0.0-beta4", | |
"Microsoft.AspNet.StaticFiles": "1.0.0-beta4", | |
"EntityFramework.InMemory": "7.0.0-beta4", | |
"EntityFramework.SqlServer": "7.0.0-beta4", | |
"Microsoft.AspNet.Authentication.Cookies": "1.0.0-beta4", | |
"Microsoft.AspNet.Identity.EntityFramework": "3.0.0-beta4", | |
"Microsoft.Framework.ConfigurationModel": "1.0.0-beta4", | |
"Microsoft.Framework.ConfigurationModel.Json": "1.0.0-beta4", | |
"AutoMapper": "4.0.0-ci1026" | |
}, | |
"commands": { | |
"WebListener": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5102", | |
"Kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5104", | |
"run": "run server.urls=http://localhost:5103" | |
}, | |
"scripts": { | |
"postrestore": [ "npm install" ], | |
"prepare": [ "grunt bower:install" ] | |
}, | |
"frameworks": { | |
"dnx451": {}, | |
"dnxcore50": {} | |
} | |
} |
This file contains hidden or 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
--- | |
webroot: "wwwroot" | |
exclude: | |
- "wwwroot" | |
- "bower_components" | |
- "node_modules" | |
- "grunt" | |
publishExclude: | |
- "bower.json" | |
- "package.json" | |
- "gruntfile.js" | |
- "bower_components" | |
- "node_modules" | |
- "grunt" | |
authors: | |
- "Microsoft" | |
description: "Music store application on K as a SPA" | |
compilationOptions: | |
define: | |
- "DEBUG" | |
dependencies: | |
Kestrel: "1.0.0-beta4" | |
Microsoft.AspNet.Server.IIS: "1.0.0-beta4" | |
Microsoft.AspNet.Mvc: "6.0.0-beta4" | |
Microsoft.AspNet.Server.WebListener: "1.0.0-beta4" | |
Microsoft.AspNet.StaticFiles: "1.0.0-beta4" | |
EntityFramework.InMemory: "7.0.0-beta4" | |
EntityFramework.SqlServer: "7.0.0-beta4" | |
Microsoft.AspNet.Authentication.Cookies: "1.0.0-beta4" | |
Microsoft.AspNet.Identity.EntityFramework: "3.0.0-beta4" | |
Microsoft.Framework.ConfigurationModel: "1.0.0-beta4" | |
Microsoft.Framework.ConfigurationModel.Json: "1.0.0-beta4" | |
AutoMapper: "4.0.0-ci1026" | |
commands: | |
WebListener: "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5102" | |
Kestrel: "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5104" | |
run: "run server.urls=http://localhost:5103" | |
scripts: | |
postrestore: | |
- "npm install" | |
prepare: | |
- "grunt bower:install" | |
frameworks: | |
dnx451: {} | |
dnxcore50: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment