Skip to content

Instantly share code, notes, and snippets.

@tdshipley
Created March 24, 2016 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdshipley/85868bb2b332ef2316e5 to your computer and use it in GitHub Desktop.
Save tdshipley/85868bb2b332ef2316e5 to your computer and use it in GitHub Desktop.
Sample project.json with the dependencies needed for a ASP.NET Core project that uses EF 7 and ASP.NET Core
{
"dependencies": {
"EntityFramework.Sqlite": "7.0.0-rc1-final",
"EntityFramework.Commands": "7.0.0-rc1-final",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final"
},
"commands": {
"web": "Microsoft.AspNet.Server.Kestrel --server.urls=http://*:9000/",
"ef": "EntityFramework.Commands"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment