Commit ee615c0c authored by Nick Craver's avatar Nick Craver

Upgrade project.json files to RC2 format.

Note: on a nuspec comparison, the following dependencies aren't there
anymore: Microsoft.CSharp, mscorlib, System, and System.Core aren't
explicitly specified in frameworkAssemblies anymore. The only one of
these I can imagine mattering is Microsoft.CSharp.
parent 57ec9255
{
"packOptions": {
"summary": "Dapper.Contrib",
"tags": [ "orm", "sql", "micro-orm", "dapper" ],
"owners": [ "johandanforth", "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Sam Saffron", "Johan Danforth" ],
"owners": [ "johandanforth", "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "Dapper.Contrib",
"description": "The official collection of get, insert, update and delete helpers for dapper.net. Also handles lists of entities and optional \"dirty\" tracking of interface-based entities.",
"version": "1.50-beta10",
"title": "Dapper.Contrib",
"tags": [ "orm", "sql", "micro-orm", "dapper" ],
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
"Dapper": {
......@@ -15,12 +21,16 @@
"target": "project"
}
},
"compile": [
"**/*.cs",
"../Dapper/TypeExtensions.cs"
],
"compilationOptions": {
"warningsAsErrors": true
"buildOptions": {
"warningsAsErrors": true,
"compile": {
"include:": [
"**/*.cs"
],
"includeFiles": [
"../Dapper/TypeExtensions.cs"
]
}
},
"frameworks": {
"net40": {
......@@ -30,7 +40,7 @@
}
},
"net45": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": {
......@@ -41,7 +51,7 @@
}
},
"netstandard1.3": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC", "COREFX" ]
},
"dependencies": {
......
{
"packOptions": {
"summary": "Adds support for DbGeography, etc.",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Marc Gravell", "Nick Craver" ],
"owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "Adds support for DbGeography, etc.",
"description": "Extension handlers for entity framework",
"version": "1.50-beta10",
"title": "Dapper entity framework type handlers (with a strong name)",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
"Dapper.StrongName": {
......@@ -15,11 +21,16 @@
"target": "project"
}
},
"compile": [
"../Dapper.EntityFramework/*.cs"
],
"compilationOptions": {
"warningsAsErrors": true
"buildOptions": {
"warningsAsErrors": true,
"compile": {
"include": [
"../Dapper.EntityFramework/**/*.cs"
],
"exclude": [
"../Dapper.EntityFramework/obj/"
]
}
},
"frameworks": {
"net40": {
......@@ -35,7 +46,7 @@
}
},
"net45": {
"compilationOptions": {
"buildOptions": {
"keyFile": "../Dapper.snk",
"define": [ "ASYNC" ]
},
......
{
"packOptions": {
"summary": "Adds support for DbGeography, etc.",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Marc Gravell", "Nick Craver" ],
"owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "Adds support for DbGeography, etc.",
"description": "Extension handlers for entity framework",
"version": "1.50-beta10",
"title": "Dapper entity framework type handlers",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
"Dapper": {
......@@ -15,7 +21,7 @@
"target": "project"
}
},
"compilationOptions": {
"buildOptions": {
"warningsAsErrors": true
},
"frameworks": {
......@@ -32,7 +38,7 @@
}
},
"net45": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": {
......
{
"packOptions": {
"summary": "A demo is available at https://gist.github.com/1599013",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "samsaffron" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Sam Saffron" ],
"owners": [ "samsaffron" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "A demo is available at https://gist.github.com/1599013",
"description": "Trivial micro-orm implemented on Dapper, provides with CRUD helpers.",
"version": "0.1.3-beta1",
"title": "Dapper.Rainbow",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2012 Sam Saffron",
"dependencies": {
"Dapper": {
......@@ -15,12 +21,16 @@
"target": "project"
}
},
"compile": [
"**/*.cs",
"../Dapper/TypeExtensions.cs"
],
"compilationOptions": {
"warningsAsErrors": true
"buildOptions": {
"warningsAsErrors": true,
"compile": {
"include:": [
"**/*.cs"
],
"includeFiles": [
"../Dapper/TypeExtensions.cs"
]
}
},
"frameworks": {
"net40": {
......@@ -31,7 +41,7 @@
}
},
"net45": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": {
......@@ -41,7 +51,7 @@
}
},
"netstandard1.3": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC", "COREFX" ]
},
"dependencies": {
......
{
"packOptions": {
"summary": "Dapper.SqlBuilder",
"tags": [ "orm", "sql", "micro-orm", "query", "sql-builder" ],
"owners": [ "AEckenberger", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Sam Saffron, Johan Danforth" ],
"owners": [ "AEckenberger", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "Dapper.SqlBuilder",
"description": "The Dapper SqlBuilder component, for building SQL queries dynamically.",
"version": "1.50-beta10",
"title": "Dapper SqlBuilder component",
"tags": [ "orm", "sql", "micro-orm", "query", "sql-builder" ],
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
"Dapper": {
......@@ -15,7 +21,7 @@
"target": "project"
}
},
"compilationOptions": {
"buildOptions": {
"warningsAsErrors": true
},
"frameworks": {
......@@ -26,7 +32,7 @@
}
},
"net45": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": {
......@@ -35,7 +41,7 @@
}
},
"netstandard1.3": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC", "COREFX" ]
},
"dependencies": {
......
{
"packOptions": {
"summary": "A high performance Micro-ORM",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ],
"releaseNotes": "http://stackexchange.github.io/dapper-dot-net/",
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Sam Saffron", "Marc Gravell", "Nick Craver" ],
"owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "A high performance Micro-ORM",
"description": "A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..",
"version": "1.50-beta10",
"title": "Dapper dot net (strong named)",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
},
"releaseNotes": "http://stackexchange.github.io/dapper-dot-net/",
"compile": [
"../Dapper/**/*.cs"
],
"compileExclude": [
"../Dapper/obj/"
],
"compilationOptions": {
"buildOptions": {
"keyFile": "../Dapper.snk",
"warningsAsErrors": true
"warningsAsErrors": true,
"compile:": {
"include": [
"../Dapper/**/*.cs"
],
"exclude": [
"../Dapper/obj/"
]
}
},
"frameworks": {
"net40": {
......@@ -31,7 +39,7 @@
}
},
"net45": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": {
......@@ -41,17 +49,17 @@
}
},
"net451": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": {
"System.Data": "4.0.0.0",
"System.Xml": "4.0.0.0",
"System.Xml.Linq": "4.0.0.0"
},
"compilationOptions": {
"define": [ "ASYNC" ]
}
},
"netstandard1.3": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC", "COREFX" ]
},
"dependencies": {
......
{
"authors": [ "Sam Saffron", "Johan Danforth" ],
"packOptions": {
"summary": "Dapper Contrib Test Suite",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "johandanforth", "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"description": "Dapper Contrib Test Suite",
"title": "Dapper.Tests.Contrib",
"version": "1.0.0",
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
"Dapper": {
"version": "1.50-*",
"target": "project"
},
"Dapper.Contrib": {
"version": "1.50-*",
"target": "project"
},
"Dapper.SqlBuilder": {
"version": "1.50-*",
"target": "project"
}
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Sam Saffron", "Johan Danforth" ],
"description": "Dapper Contrib Test Suite",
"title": "Dapper.Tests.Contrib",
"version": "1.0.0",
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
"Dapper": {
"version": "1.50-*",
"target": "project"
},
"Dapper.Contrib": {
"version": "1.50-*",
"target": "project"
},
"compile": [
"**/*.cs",
"Dapper.SqlBuilder": {
"version": "1.50-*",
"target": "project"
}
},
"buildOptions": {
"warningsAsErrors": true,
"emitEntryPoint": true,
"debugType": "portable",
"compile": {
"include:": [
"**/*.cs"
],
"includeFiles": [
"../Dapper.Tests/Assert.cs",
"../Dapper.Tests/XunitSkippable.cs",
"../Dapper/TypeExtensions.cs"
],
"compilationOptions": {
"warningsAsErrors": true,
"emitEntryPoint": true,
"debugType": "portable"
},
"testRunner": "xunit",
"frameworks": {
//"net40": {
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Transactions": "4.0.0.0",
// "System.Xml": "4.0.0.0"
// },
// "dependencies": {
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "MySql.Data": "6.9.8",
// "System.Data.SQLite.Core": "1.0.98.1",
// "xunit": "1.9.2"
// }
//},
//"net45": {
// "compilationOptions": {
// "define": [ "ASYNC", "XUNIT2" ]
// },
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Runtime": "4.0.0.0",
// "System.Transactions": "4.0.0.0",
// "System.Xml": "4.0.0.0"
// },
// "dependencies": {
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "MySql.Data": "6.9.8",
// "System.Data.SQLite.Core": "1.0.98.1",
// "xunit": "2.1.0"
// }
//},
]
}
},
"testRunner": "xunit",
"frameworks": {
//"net40": {
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Transactions": "4.0.0.0",
// "System.Xml": "4.0.0.0"
// },
// "dependencies": {
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "MySql.Data": "6.9.8",
// "System.Data.SQLite.Core": "1.0.98.1",
// "xunit": "1.9.2"
// }
//},
//"net45": {
// "compilationOptions": {
// "define": [ "ASYNC", "XUNIT2" ]
// },
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Runtime": "4.0.0.0",
// "System.Transactions": "4.0.0.0",
// "System.Xml": "4.0.0.0"
// },
// "dependencies": {
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "MySql.Data": "6.9.8",
// "System.Data.SQLite.Core": "1.0.98.1",
// "xunit": "2.1.0"
// }
//},
//"dnx451": {
// "compilationOptions": {
// "define": [ "ASYNC", "XUNIT2" ]
// },
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Transactions": "4.0.0.0"
// },
// "dependencies": {
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "MySql.Data": "6.9.8",
// "System.Data.SQLite.Core": "1.0.98.1",
// "xunit": "2.1.0",
// "xunit.runner.dnx": "2.1.0-*"
// }
//},
"netcoreapp1.0": {
"imports": [ "dnxcore50", "portable-net45+win8" ],
"compilationOptions": {
"define": [ "COREFX", "ASYNC", "XUNIT2" ]
},
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"Microsoft.Data.Sqlite": "1.0.0-rc2-final",
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-*"
}
}
//"dnx451": {
// "compilationOptions": {
// "define": [ "ASYNC", "XUNIT2" ]
// },
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Transactions": "4.0.0.0"
// },
// "dependencies": {
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "MySql.Data": "6.9.8",
// "System.Data.SQLite.Core": "1.0.98.1",
// "xunit": "2.1.0",
// "xunit.runner.dnx": "2.1.0-*"
// }
//},
"netcoreapp1.0": {
"imports": [ "dnxcore50", "portable-net45+win8" ],
"buildOptions": {
"define": [ "COREFX", "ASYNC", "XUNIT2" ]
},
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-3002702",
"type": "platform"
},
"Microsoft.Data.Sqlite": "1.0.0-rc2-final",
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-*"
}
}
}
}
\ No newline at end of file
{
"authors": [ "Marc Gravell", "Nick Craver" ],
"packOptions": {
"summary": "Dapper.Tests",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"description": "Dapper Core Test Suite",
"title": "Dapper.Tests",
"version": "1.0.0-*",
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
"Dapper": {
"version": "1.50-*",
"target": "project"
},
"Dapper.Contrib": {
"target": "project"
}
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Marc Gravell", "Nick Craver" ],
"description": "Dapper Core Test Suite",
"title": "Dapper.Tests",
"version": "1.0.0-*",
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
"Dapper": {
"version": "1.50-*",
"target": "project"
},
//"commands": {
// "perf": "Dapper.Tests"
"Dapper.Contrib": {
"target": "project"
}
},
//"commands": {
// "perf": "Dapper.Tests"
//},
"buildOptions": {
"warningsAsErrors": true,
"emitEntryPoint": true,
"debugType": "portable"
},
"testRunner": "xunit",
"frameworks": {
//"net40": {
// "compilationOptions": {
// "define": [
// "MYSQL",
// "ENTITY_FRAMEWORK",
// "LINQ2SQL",
// "FIREBIRD",
// "SQL_CE",
// "OLEDB",
// "MASSIVE",
// "ORMLITE",
// "SOMA",
// "SIMPLEDATA",
// "SQLITE"
// ]
// },
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Xml": "4.0.0.0",
// "System.Xml.Linq": "4.0.0.0"
// },
// "dependencies": {
// "Dapper.EntityFramework": {
// "target": "project"
// },
// "EntityFramework": "6.1.3",
// "FirebirdSql.Data.FirebirdClient": "4.10.0",
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "Microsoft.SqlServer.Types": "11.0.2",
// "MySql.Data": "6.9.8",
// "NHibernate": "4.0.4.4000",
// "ServiceStack.OrmLite": "4.0.48",
// "ServiceStack.OrmLite.SqlServer": "4.0.48",
// "Simple.Data.Ado": "1.0.0-rc3",
// "Simple.Data.Core": "1.0.0-rc3",
// "Simple.Data.SqlServer": "1.0.0-rc3",
// "Soma": "1.8.0.7",
// "System.Data.SQLite": "1.0.99",
// "xunit": "1.9.2"
// }
//},
"compilationOptions": {
"warningsAsErrors": true,
"emitEntryPoint": true,
"debugType": "portable"
},
"testRunner": "xunit",
"frameworks": {
//"net40": {
// "compilationOptions": {
// "define": [
// "MYSQL",
// "ENTITY_FRAMEWORK",
// "LINQ2SQL",
// "FIREBIRD",
// "SQL_CE",
// "OLEDB",
// "MASSIVE",
// "ORMLITE",
// "SOMA",
// "SIMPLEDATA",
// "SQLITE"
// ]
// },
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Xml": "4.0.0.0",
// "System.Xml.Linq": "4.0.0.0"
// },
// "dependencies": {
// "Dapper.EntityFramework": {
// "target": "project"
// },
// "EntityFramework": "6.1.3",
// "FirebirdSql.Data.FirebirdClient": "4.10.0",
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "Microsoft.SqlServer.Types": "11.0.2",
// "MySql.Data": "6.9.8",
// "NHibernate": "4.0.4.4000",
// "ServiceStack.OrmLite": "4.0.48",
// "ServiceStack.OrmLite.SqlServer": "4.0.48",
// "Simple.Data.Ado": "1.0.0-rc3",
// "Simple.Data.Core": "1.0.0-rc3",
// "Simple.Data.SqlServer": "1.0.0-rc3",
// "Soma": "1.8.0.7",
// "System.Data.SQLite": "1.0.99",
// "xunit": "1.9.2"
// }
//},
//"net45": {
// "compilationOptions": {
// "define": [
// "ASYNC",
// "MYSQL",
// "ENTITY_FRAMEWORK",
// "LINQ2SQL",
// "FIREBIRD",
// "SQL_CE",
// "POSTGRESQL",
// "OLEDB",
// "MASSIVE",
// "ORMLITE",
// "SOMA",
// "SIMPLEDATA",
// "SQLITE",
// "XUNIT2"
// ]
// },
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Runtime": "4.0.0.0",
// "System.Xml": "4.0.0.0",
// "System.Xml.Linq": "4.0.0.0"
// },
// "dependencies": {
// "Dapper.EntityFramework": {
// "target": "project"
// },
// "EntityFramework": "6.1.3",
// "FirebirdSql.Data.FirebirdClient": "4.10.0",
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "Microsoft.SqlServer.Types": "11.0.2",
// "MySql.Data": "6.9.8",
// "NHibernate": "4.0.4.4000",
// "Npgsql": "3.0.5",
// "ServiceStack.OrmLite": "4.0.48",
// "ServiceStack.OrmLite.SqlServer": "4.0.48",
// "Simple.Data.Ado": "2.0.0-alpha1",
// "Simple.Data.Core": "2.0.0-alpha1",
// "Simple.Data.SqlServer": "2.0.0-alpha1",
// "Soma": "1.8.0.7",
// "Susanoo.Core": "1.2.4",
// "Susanoo.SqlServer": "1.2.4",
// "System.Data.SQLite": "1.0.99",
// "xunit": "2.1.0"
// }
//},
"netcoreapp1.0": {
"imports": [ "dnxcore50", "portable-net45+win8" ],
"compilationOptions": {
"define": [ "ASYNC", "COREFX", "XUNIT2", "SQLITE" ]
},
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-24015",
"type": "platform"
},
"Microsoft.Data.Sqlite": "1.0.0-rc2-20597",
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-*"
}
}
//"net45": {
// "compilationOptions": {
// "define": [
// "ASYNC",
// "MYSQL",
// "ENTITY_FRAMEWORK",
// "LINQ2SQL",
// "FIREBIRD",
// "SQL_CE",
// "POSTGRESQL",
// "OLEDB",
// "MASSIVE",
// "ORMLITE",
// "SOMA",
// "SIMPLEDATA",
// "SQLITE",
// "XUNIT2"
// ]
// },
// "frameworkAssemblies": {
// "System.Configuration": "4.0.0.0",
// "System.Data": "4.0.0.0",
// "System.Data.Linq": "4.0.0.0",
// "System.Runtime": "4.0.0.0",
// "System.Xml": "4.0.0.0",
// "System.Xml.Linq": "4.0.0.0"
// },
// "dependencies": {
// "Dapper.EntityFramework": {
// "target": "project"
// },
// "EntityFramework": "6.1.3",
// "FirebirdSql.Data.FirebirdClient": "4.10.0",
// "Microsoft.SqlServer.Compact": "4.0.8876.1",
// "Microsoft.SqlServer.Types": "11.0.2",
// "MySql.Data": "6.9.8",
// "NHibernate": "4.0.4.4000",
// "Npgsql": "3.0.5",
// "ServiceStack.OrmLite": "4.0.48",
// "ServiceStack.OrmLite.SqlServer": "4.0.48",
// "Simple.Data.Ado": "2.0.0-alpha1",
// "Simple.Data.Core": "2.0.0-alpha1",
// "Simple.Data.SqlServer": "2.0.0-alpha1",
// "Soma": "1.8.0.7",
// "Susanoo.Core": "1.2.4",
// "Susanoo.SqlServer": "1.2.4",
// "System.Data.SQLite": "1.0.99",
// "xunit": "2.1.0"
// }
//},
"netcoreapp1.0": {
"imports": [ "dnxcore50", "portable-net45+win8" ],
"buildOptions": {
"define": [ "ASYNC", "COREFX", "XUNIT2", "SQLITE" ]
},
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-rc2-24015",
"type": "platform"
},
"Microsoft.Data.Sqlite": "1.0.0-rc2-20597",
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-*"
}
}
}
}
\ No newline at end of file
{
"packOptions": {
"summary": "A high performance Micro-ORM",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ],
"releaseNotes": "http://stackexchange.github.io/dapper-dot-net/",
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"version": "1.50-beta10",
"authors": [ "Sam Saffron", "Marc Gravell", "Nick Craver" ],
"owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "A high performance Micro-ORM",
"description": "A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..",
"version": "1.50-beta10",
"title": "Dapper dot net",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2015 Stack Exchange, Inc.",
"dependencies": {
},
"releaseNotes": "http://stackexchange.github.io/dapper-dot-net/",
"compilationOptions": {
"buildOptions": {
"warningsAsErrors": true
},
"frameworks": {
......@@ -24,7 +30,7 @@
}
},
"net45": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": {
......@@ -34,17 +40,17 @@
}
},
"net451": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": {
"System.Data": "4.0.0.0",
"System.Xml": "4.0.0.0",
"System.Xml.Linq": "4.0.0.0"
},
"compilationOptions": {
"define": [ "ASYNC" ]
}
},
"netstandard1.3": {
"compilationOptions": {
"buildOptions": {
"define": [ "ASYNC", "COREFX" ]
},
"dependencies": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment