Skip to content

Instantly share code, notes, and snippets.

@AndersNS
Created June 29, 2015 08:46
Show Gist options
  • Save AndersNS/ee066caa01701f3a4916 to your computer and use it in GitHub Desktop.
Save AndersNS/ee066caa01701f3a4916 to your computer and use it in GitHub Desktop.
{
"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": {}
}
}
---
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