Skip to content

Commit

Permalink
Adding descriptions for NuGet packages
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanmiller committed Oct 28, 2014
1 parent 127231d commit b0da857
Show file tree
Hide file tree
Showing 10 changed files with 265 additions and 255 deletions.
31 changes: 16 additions & 15 deletions src/EntityFramework.AzureTableStorage/project.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"version": "7.0.0-*",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"WindowsAzure.Storage": "4.1.0",
"EntityFramework": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net45": { },
"aspnet50": { }
}
}
{
"version": "7.0.0-*",
"description": "Azure Table Storage data store for Entity Framework.",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"WindowsAzure.Storage": "4.1.0",
"EntityFramework": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net45": { },
"aspnet50": { }
}
}
69 changes: 35 additions & 34 deletions src/EntityFramework.Commands/project.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,35 @@
{
"version": "7.0.0-*",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework.Migrations": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"exclude": "tools\\Handlers.cs",
"frameworks": {
"net451": { },
"aspnet50": {
"dependencies": {
"Microsoft.AspNet.Hosting": "1.0.0-*",
"Microsoft.Framework.CommandLineUtils": { "version": "1.0.0-*", "type": "build" }
}
},
"aspnetcore50": {
"dependencies": {
"Microsoft.AspNet.Hosting": "1.0.0-*",
"Microsoft.Framework.CommandLineUtils": { "version": "1.0.0-*", "type": "build" }
}
},
".NETPortable,Version=v4.6,Profile=Profile151": {
"bin": {
"assembly": "lib\\portable-net451+win81+wpa81\\_._"
}
}
},
"commands": {
"ef": "EntityFramework.Commands"
}
}
{
"version": "7.0.0-*",
"description": "Command line utilities for Entity Framework.",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework.Migrations": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"exclude": "tools\\Handlers.cs",
"frameworks": {
"net451": { },
"aspnet50": {
"dependencies": {
"Microsoft.AspNet.Hosting": "1.0.0-*",
"Microsoft.Framework.CommandLineUtils": { "version": "1.0.0-*", "type": "build" }
}
},
"aspnetcore50": {
"dependencies": {
"Microsoft.AspNet.Hosting": "1.0.0-*",
"Microsoft.Framework.CommandLineUtils": { "version": "1.0.0-*", "type": "build" }
}
},
".NETPortable,Version=v4.6,Profile=Profile151": {
"bin": {
"assembly": "lib\\portable-net451+win81+wpa81\\_._"
}
}
},
"commands": {
"ef": "EntityFramework.Commands"
}
}
33 changes: 17 additions & 16 deletions src/EntityFramework.InMemory/project.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"version": "7.0.0-*",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net45": { },
"aspnet50": { },
"aspnetcore50": { },
".NETPortable,Version=v4.6,Profile=Profile151": { }
}
}
{
"version": "7.0.0-*",
"description": "In memory data store for Entity Framework (to be used for testing purposes).",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net45": { },
"aspnet50": { },
"aspnetcore50": { },
".NETPortable,Version=v4.6,Profile=Profile151": { }
}
}
51 changes: 26 additions & 25 deletions src/EntityFramework.Migrations/project.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
{
"version": "7.0.0-*",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework.Relational": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net451": { },
"aspnet50": { },
"aspnetcore50": {
"dependencies": {
"Microsoft.CSharp": "4.0.0-beta-*"
}
},
".NETPortable,Version=v4.6,Profile=Profile151": {
"frameworkAssemblies": {
"Microsoft.CSharp": "",
"System.Dynamic.Runtime": ""
}
}
}
}
{
"version": "7.0.0-*",
"description": "Shared Entity Framework migrations components for relational data stores.",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework.Relational": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net451": { },
"aspnet50": { },
"aspnetcore50": {
"dependencies": {
"Microsoft.CSharp": "4.0.0-beta-*"
}
},
".NETPortable,Version=v4.6,Profile=Profile151": {
"frameworkAssemblies": {
"Microsoft.CSharp": "",
"System.Dynamic.Runtime": ""
}
}
}
}
31 changes: 16 additions & 15 deletions src/EntityFramework.Redis/project.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"version": "7.0.0-*",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework": "",
"StackExchange.Redis": "1.0.322"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net45": { },
"aspnet50": { }
}
}
{
"version": "7.0.0-*",
"description": "Redis data store for Entity Framework.",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework": "",
"StackExchange.Redis": "1.0.322"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net45": { },
"aspnet50": { }
}
}
43 changes: 22 additions & 21 deletions src/EntityFramework.Relational/project.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
{
"version": "7.0.0-*",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"System.Data.Common": "1.0.0-*",
"EntityFramework": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net451": { },
"aspnet50": { },
"aspnetcore50": { },
".NETPortable,Version=v4.6,Profile=Profile151": {
"frameworkAssemblies": {
"System.Text.RegularExpressions": ""
}
}
}
}
{
"version": "7.0.0-*",
"description": "Shared Entity Framework components for relational data stores.",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"System.Data.Common": "1.0.0-*",
"EntityFramework": "7.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net451": { },
"aspnet50": { },
"aspnetcore50": { },
".NETPortable,Version=v4.6,Profile=Profile151": {
"frameworkAssemblies": {
"System.Text.RegularExpressions": ""
}
}
}
}
33 changes: 17 additions & 16 deletions src/EntityFramework.SQLite/project.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"version": "7.0.0-*",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework.Migrations": "7.0.0-*",
"Microsoft.Data.SQLite": "1.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"aspnet50": { },
"aspnetcore50": { },
".NETPortable,Version=v4.6,Profile=Profile151": { }
}
}
{
"version": "7.0.0-*",
"description": "SQLite data store for Entity Framework.",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework.Migrations": "7.0.0-*",
"Microsoft.Data.SQLite": "1.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"aspnet50": { },
"aspnetcore50": { },
".NETPortable,Version=v4.6,Profile=Profile151": { }
}
}
41 changes: 21 additions & 20 deletions src/EntityFramework.SqlServer/project.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
"version": "7.0.0-*",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework.Migrations": "7.0.0-*",
"System.Data.SqlClient": "1.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net451": { },
"aspnet50": { },
"aspnetcore50": {
"dependencies": {
"System.Threading.Thread": "4.0.0-beta-*"
}
}
}
}
{
"version": "7.0.0-*",
"description": "SQLite data store for Entity Framework.",
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"EntityFramework.Migrations": "7.0.0-*",
"System.Data.SqlClient": "1.0.0-*"
},
"code": [ "**\\*.cs", "..\\Shared\\*.cs" ],
"frameworks": {
"net451": { },
"aspnet50": { },
"aspnetcore50": {
"dependencies": {
"System.Threading.Thread": "4.0.0-beta-*"
}
}
}
}
Loading

0 comments on commit b0da857

Please sign in to comment.