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
{ {
"authors": [ "Sam Saffron", "Johan Danforth" ], "packOptions": {
"summary": "Dapper.Contrib",
"tags": [ "orm", "sql", "micro-orm", "dapper" ],
"owners": [ "johandanforth", "marc.gravell", "nick.craver" ], "owners": [ "johandanforth", "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", "projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "Dapper.Contrib", "repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Sam Saffron", "Johan Danforth" ],
"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.", "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", "version": "1.50-beta10",
"title": "Dapper.Contrib", "title": "Dapper.Contrib",
"tags": [ "orm", "sql", "micro-orm", "dapper" ],
"copyright": "2015 Stack Exchange, Inc.", "copyright": "2015 Stack Exchange, Inc.",
"dependencies": { "dependencies": {
"Dapper": { "Dapper": {
...@@ -15,12 +21,16 @@ ...@@ -15,12 +21,16 @@
"target": "project" "target": "project"
} }
}, },
"compile": [ "buildOptions": {
"**/*.cs", "warningsAsErrors": true,
"../Dapper/TypeExtensions.cs" "compile": {
"include:": [
"**/*.cs"
], ],
"compilationOptions": { "includeFiles": [
"warningsAsErrors": true "../Dapper/TypeExtensions.cs"
]
}
}, },
"frameworks": { "frameworks": {
"net40": { "net40": {
...@@ -30,7 +40,7 @@ ...@@ -30,7 +40,7 @@
} }
}, },
"net45": { "net45": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC" ] "define": [ "ASYNC" ]
}, },
"frameworkAssemblies": { "frameworkAssemblies": {
...@@ -41,7 +51,7 @@ ...@@ -41,7 +51,7 @@
} }
}, },
"netstandard1.3": { "netstandard1.3": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC", "COREFX" ] "define": [ "ASYNC", "COREFX" ]
}, },
"dependencies": { "dependencies": {
......
{ {
"authors": [ "Marc Gravell", "Nick Craver" ], "packOptions": {
"summary": "Adds support for DbGeography, etc.",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ], "owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", "projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "Adds support for DbGeography, etc.", "repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Marc Gravell", "Nick Craver" ],
"description": "Extension handlers for entity framework", "description": "Extension handlers for entity framework",
"version": "1.50-beta10", "version": "1.50-beta10",
"title": "Dapper entity framework type handlers (with a strong name)", "title": "Dapper entity framework type handlers (with a strong name)",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2015 Stack Exchange, Inc.", "copyright": "2015 Stack Exchange, Inc.",
"dependencies": { "dependencies": {
"Dapper.StrongName": { "Dapper.StrongName": {
...@@ -15,11 +21,16 @@ ...@@ -15,11 +21,16 @@
"target": "project" "target": "project"
} }
}, },
"compile": [ "buildOptions": {
"../Dapper.EntityFramework/*.cs" "warningsAsErrors": true,
"compile": {
"include": [
"../Dapper.EntityFramework/**/*.cs"
], ],
"compilationOptions": { "exclude": [
"warningsAsErrors": true "../Dapper.EntityFramework/obj/"
]
}
}, },
"frameworks": { "frameworks": {
"net40": { "net40": {
...@@ -35,7 +46,7 @@ ...@@ -35,7 +46,7 @@
} }
}, },
"net45": { "net45": {
"compilationOptions": { "buildOptions": {
"keyFile": "../Dapper.snk", "keyFile": "../Dapper.snk",
"define": [ "ASYNC" ] "define": [ "ASYNC" ]
}, },
......
{ {
"authors": [ "Marc Gravell", "Nick Craver" ], "packOptions": {
"summary": "Adds support for DbGeography, etc.",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ], "owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", "projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "Adds support for DbGeography, etc.", "repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Marc Gravell", "Nick Craver" ],
"description": "Extension handlers for entity framework", "description": "Extension handlers for entity framework",
"version": "1.50-beta10", "version": "1.50-beta10",
"title": "Dapper entity framework type handlers", "title": "Dapper entity framework type handlers",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2015 Stack Exchange, Inc.", "copyright": "2015 Stack Exchange, Inc.",
"dependencies": { "dependencies": {
"Dapper": { "Dapper": {
...@@ -15,7 +21,7 @@ ...@@ -15,7 +21,7 @@
"target": "project" "target": "project"
} }
}, },
"compilationOptions": { "buildOptions": {
"warningsAsErrors": true "warningsAsErrors": true
}, },
"frameworks": { "frameworks": {
...@@ -32,7 +38,7 @@ ...@@ -32,7 +38,7 @@
} }
}, },
"net45": { "net45": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC" ] "define": [ "ASYNC" ]
}, },
"frameworkAssemblies": { "frameworkAssemblies": {
......
{ {
"authors": [ "Sam Saffron" ], "packOptions": {
"summary": "A demo is available at https://gist.github.com/1599013",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "samsaffron" ], "owners": [ "samsaffron" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", "projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "A demo is available at https://gist.github.com/1599013", "repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Sam Saffron" ],
"description": "Trivial micro-orm implemented on Dapper, provides with CRUD helpers.", "description": "Trivial micro-orm implemented on Dapper, provides with CRUD helpers.",
"version": "0.1.3-beta1", "version": "0.1.3-beta1",
"title": "Dapper.Rainbow", "title": "Dapper.Rainbow",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2012 Sam Saffron", "copyright": "2012 Sam Saffron",
"dependencies": { "dependencies": {
"Dapper": { "Dapper": {
...@@ -15,12 +21,16 @@ ...@@ -15,12 +21,16 @@
"target": "project" "target": "project"
} }
}, },
"compile": [ "buildOptions": {
"**/*.cs", "warningsAsErrors": true,
"../Dapper/TypeExtensions.cs" "compile": {
"include:": [
"**/*.cs"
], ],
"compilationOptions": { "includeFiles": [
"warningsAsErrors": true "../Dapper/TypeExtensions.cs"
]
}
}, },
"frameworks": { "frameworks": {
"net40": { "net40": {
...@@ -31,7 +41,7 @@ ...@@ -31,7 +41,7 @@
} }
}, },
"net45": { "net45": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC" ] "define": [ "ASYNC" ]
}, },
"frameworkAssemblies": { "frameworkAssemblies": {
...@@ -41,7 +51,7 @@ ...@@ -41,7 +51,7 @@
} }
}, },
"netstandard1.3": { "netstandard1.3": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC", "COREFX" ] "define": [ "ASYNC", "COREFX" ]
}, },
"dependencies": { "dependencies": {
......
{ {
"authors": [ "Sam Saffron, Johan Danforth" ], "packOptions": {
"summary": "Dapper.SqlBuilder",
"tags": [ "orm", "sql", "micro-orm", "query", "sql-builder" ],
"owners": [ "AEckenberger", "nick.craver" ], "owners": [ "AEckenberger", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", "projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "Dapper.SqlBuilder", "repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Sam Saffron, Johan Danforth" ],
"description": "The Dapper SqlBuilder component, for building SQL queries dynamically.", "description": "The Dapper SqlBuilder component, for building SQL queries dynamically.",
"version": "1.50-beta10", "version": "1.50-beta10",
"title": "Dapper SqlBuilder component", "title": "Dapper SqlBuilder component",
"tags": [ "orm", "sql", "micro-orm", "query", "sql-builder" ],
"copyright": "2015 Stack Exchange, Inc.", "copyright": "2015 Stack Exchange, Inc.",
"dependencies": { "dependencies": {
"Dapper": { "Dapper": {
...@@ -15,7 +21,7 @@ ...@@ -15,7 +21,7 @@
"target": "project" "target": "project"
} }
}, },
"compilationOptions": { "buildOptions": {
"warningsAsErrors": true "warningsAsErrors": true
}, },
"frameworks": { "frameworks": {
...@@ -26,7 +32,7 @@ ...@@ -26,7 +32,7 @@
} }
}, },
"net45": { "net45": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC" ] "define": [ "ASYNC" ]
}, },
"frameworkAssemblies": { "frameworkAssemblies": {
...@@ -35,7 +41,7 @@ ...@@ -35,7 +41,7 @@
} }
}, },
"netstandard1.3": { "netstandard1.3": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC", "COREFX" ] "define": [ "ASYNC", "COREFX" ]
}, },
"dependencies": { "dependencies": {
......
{ {
"authors": [ "Sam Saffron", "Marc Gravell", "Nick Craver" ], "packOptions": {
"summary": "A high performance Micro-ORM",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ], "owners": [ "marc.gravell", "nick.craver" ],
"releaseNotes": "http://stackexchange.github.io/dapper-dot-net/",
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", "projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "A high performance Micro-ORM", "repository": {
"type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"authors": [ "Sam Saffron", "Marc Gravell", "Nick Craver" ],
"description": "A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..", "description": "A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..",
"version": "1.50-beta10", "version": "1.50-beta10",
"title": "Dapper dot net (strong named)", "title": "Dapper dot net (strong named)",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2015 Stack Exchange, Inc.", "copyright": "2015 Stack Exchange, Inc.",
"dependencies": { "dependencies": {
}, },
"releaseNotes": "http://stackexchange.github.io/dapper-dot-net/", "buildOptions": {
"compile": [ "keyFile": "../Dapper.snk",
"warningsAsErrors": true,
"compile:": {
"include": [
"../Dapper/**/*.cs" "../Dapper/**/*.cs"
], ],
"compileExclude": [ "exclude": [
"../Dapper/obj/" "../Dapper/obj/"
], ]
"compilationOptions": { }
"keyFile": "../Dapper.snk",
"warningsAsErrors": true
}, },
"frameworks": { "frameworks": {
"net40": { "net40": {
...@@ -31,7 +39,7 @@ ...@@ -31,7 +39,7 @@
} }
}, },
"net45": { "net45": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC" ] "define": [ "ASYNC" ]
}, },
"frameworkAssemblies": { "frameworkAssemblies": {
...@@ -41,17 +49,17 @@ ...@@ -41,17 +49,17 @@
} }
}, },
"net451": { "net451": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": { "frameworkAssemblies": {
"System.Data": "4.0.0.0", "System.Data": "4.0.0.0",
"System.Xml": "4.0.0.0", "System.Xml": "4.0.0.0",
"System.Xml.Linq": "4.0.0.0" "System.Xml.Linq": "4.0.0.0"
},
"compilationOptions": {
"define": [ "ASYNC" ]
} }
}, },
"netstandard1.3": { "netstandard1.3": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC", "COREFX" ] "define": [ "ASYNC", "COREFX" ]
}, },
"dependencies": { "dependencies": {
......
{ {
"authors": [ "Sam Saffron", "Johan Danforth" ], "packOptions": {
"summary": "Dapper Contrib Test Suite",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "johandanforth", "marc.gravell", "nick.craver" ], "owners": [ "johandanforth", "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", "projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", "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" ],
"description": "Dapper Contrib Test Suite", "description": "Dapper Contrib Test Suite",
"title": "Dapper.Tests.Contrib", "title": "Dapper.Tests.Contrib",
"version": "1.0.0", "version": "1.0.0",
...@@ -21,16 +29,20 @@ ...@@ -21,16 +29,20 @@
"target": "project" "target": "project"
} }
}, },
"compile": [ "buildOptions": {
"**/*.cs", "warningsAsErrors": true,
"emitEntryPoint": true,
"debugType": "portable",
"compile": {
"include:": [
"**/*.cs"
],
"includeFiles": [
"../Dapper.Tests/Assert.cs", "../Dapper.Tests/Assert.cs",
"../Dapper.Tests/XunitSkippable.cs", "../Dapper.Tests/XunitSkippable.cs",
"../Dapper/TypeExtensions.cs" "../Dapper/TypeExtensions.cs"
], ]
"compilationOptions": { }
"warningsAsErrors": true,
"emitEntryPoint": true,
"debugType": "portable"
}, },
"testRunner": "xunit", "testRunner": "xunit",
"frameworks": { "frameworks": {
...@@ -88,7 +100,7 @@ ...@@ -88,7 +100,7 @@
//}, //},
"netcoreapp1.0": { "netcoreapp1.0": {
"imports": [ "dnxcore50", "portable-net45+win8" ], "imports": [ "dnxcore50", "portable-net45+win8" ],
"compilationOptions": { "buildOptions": {
"define": [ "COREFX", "ASYNC", "XUNIT2" ] "define": [ "COREFX", "ASYNC", "XUNIT2" ]
}, },
"dependencies": { "dependencies": {
......
{ {
"authors": [ "Marc Gravell", "Nick Craver" ], "packOptions": {
"summary": "Dapper.Tests",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ], "owners": [ "marc.gravell", "nick.craver" ],
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", "projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", "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" ],
"description": "Dapper Core Test Suite", "description": "Dapper Core Test Suite",
"title": "Dapper.Tests", "title": "Dapper.Tests",
"version": "1.0.0-*", "version": "1.0.0-*",
...@@ -19,7 +27,7 @@ ...@@ -19,7 +27,7 @@
//"commands": { //"commands": {
// "perf": "Dapper.Tests" // "perf": "Dapper.Tests"
//}, //},
"compilationOptions": { "buildOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
"emitEntryPoint": true, "emitEntryPoint": true,
"debugType": "portable" "debugType": "portable"
...@@ -121,7 +129,7 @@ ...@@ -121,7 +129,7 @@
//}, //},
"netcoreapp1.0": { "netcoreapp1.0": {
"imports": [ "dnxcore50", "portable-net45+win8" ], "imports": [ "dnxcore50", "portable-net45+win8" ],
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC", "COREFX", "XUNIT2", "SQLITE" ] "define": [ "ASYNC", "COREFX", "XUNIT2", "SQLITE" ]
}, },
"dependencies": { "dependencies": {
......
{ {
"authors": [ "Sam Saffron", "Marc Gravell", "Nick Craver" ], "packOptions": {
"summary": "A high performance Micro-ORM",
"tags": [ "orm", "sql", "micro-orm" ],
"owners": [ "marc.gravell", "nick.craver" ], "owners": [ "marc.gravell", "nick.craver" ],
"releaseNotes": "http://stackexchange.github.io/dapper-dot-net/",
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", "projectUrl": "https://github.com/StackExchange/dapper-dot-net",
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", "licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
"summary": "A high performance Micro-ORM", "repository": {
"description": "A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..", "type": "git",
"url": "https://github.com/StackExchange/dapper-dot-net"
}
},
"version": "1.50-beta10", "version": "1.50-beta10",
"authors": [ "Sam Saffron", "Marc Gravell", "Nick Craver" ],
"description": "A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..",
"title": "Dapper dot net", "title": "Dapper dot net",
"tags": [ "orm", "sql", "micro-orm" ],
"copyright": "2015 Stack Exchange, Inc.", "copyright": "2015 Stack Exchange, Inc.",
"dependencies": { "dependencies": {
}, },
"releaseNotes": "http://stackexchange.github.io/dapper-dot-net/", "buildOptions": {
"compilationOptions": {
"warningsAsErrors": true "warningsAsErrors": true
}, },
"frameworks": { "frameworks": {
...@@ -24,7 +30,7 @@ ...@@ -24,7 +30,7 @@
} }
}, },
"net45": { "net45": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC" ] "define": [ "ASYNC" ]
}, },
"frameworkAssemblies": { "frameworkAssemblies": {
...@@ -34,17 +40,17 @@ ...@@ -34,17 +40,17 @@
} }
}, },
"net451": { "net451": {
"buildOptions": {
"define": [ "ASYNC" ]
},
"frameworkAssemblies": { "frameworkAssemblies": {
"System.Data": "4.0.0.0", "System.Data": "4.0.0.0",
"System.Xml": "4.0.0.0", "System.Xml": "4.0.0.0",
"System.Xml.Linq": "4.0.0.0" "System.Xml.Linq": "4.0.0.0"
},
"compilationOptions": {
"define": [ "ASYNC" ]
} }
}, },
"netstandard1.3": { "netstandard1.3": {
"compilationOptions": { "buildOptions": {
"define": [ "ASYNC", "COREFX" ] "define": [ "ASYNC", "COREFX" ]
}, },
"dependencies": { "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