forked from DapperLib/Dapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Oren Novotny
committed
Apr 17, 2016
1 parent
c1ef42d
commit cf732e0
Showing
10 changed files
with
285 additions
and
361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
namespace Dapper.Tests.Contrib | ||
{ | ||
public class Program | ||
{ | ||
static void Main(string[] args) | ||
{ | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,116 +1,106 @@ | ||
{ | ||
"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", | ||
"description": "Dapper Contrib Test Suite", | ||
"title": "Dapper.Contrib.Tests", | ||
"version": "1.0.0", | ||
"copyright": "2015 Stack Exchange, Inc.", | ||
"dependencies": { | ||
"Dapper": { | ||
"version": "1.50-*", | ||
"target": "project" | ||
"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", | ||
"description": "Dapper Contrib Test Suite", | ||
"title": "Dapper.Contrib.Tests", | ||
"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" | ||
} | ||
}, | ||
"Dapper.Contrib": { | ||
"version": "1.50-*", | ||
"target": "project" | ||
"compile": [ | ||
"**/*.cs", | ||
"../Dapper.Tests/Assert.cs", | ||
"../Dapper.Tests/XunitSkippable.cs", | ||
"../Dapper/TypeExtensions.cs" | ||
], | ||
|
||
"compilationOptions": { | ||
"warningsAsErrors": true, | ||
"emitEntryPoint": true, | ||
"debugType": "full" | ||
}, | ||
"Dapper.SqlBuilder": { | ||
"version": "1.50-*", | ||
"target": "project" | ||
} | ||
}, | ||
"compile": [ | ||
"**/*.cs", | ||
"../Dapper.Tests/Assert.cs", | ||
"../Dapper.Tests/XunitSkippable.cs", | ||
"../Dapper/TypeExtensions.cs" | ||
], | ||
"commands": { | ||
"test": "xunit.runner.dnx" | ||
}, | ||
"compilationOptions": { | ||
"warningsAsErrors": true | ||
}, | ||
"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" | ||
} | ||
}, | ||
"dotnet5.4": { | ||
"compilationOptions": { | ||
"define": [ "ASYNC", "COREFX", "XUNIT2" ] | ||
}, | ||
"dependencies": { | ||
"Microsoft.CSharp": "4.0.1-*", | ||
"Microsoft.Data.Sqlite": "1.0.0-rc1-final", | ||
"System.Collections": "4.0.11-*", | ||
"System.Console": "4.0.0-*", | ||
"System.Data.SqlClient": "4.0.0-*", | ||
"System.Linq": "4.0.1-*", | ||
"System.Runtime": "4.0.21-*", | ||
"System.Threading": "4.0.11-*", | ||
"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-*" | ||
} | ||
"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": "1.0.0-rc2-24015", | ||
"Microsoft.Data.Sqlite": "1.0.0-rc2-20597", | ||
"xunit": "2.1.0", | ||
"dotnet-test-xunit": "1.0.0-rc2-*" | ||
} | ||
} | ||
}, | ||
"dnxcore50": { | ||
"compilationOptions": { | ||
"define": [ "COREFX", "ASYNC", "XUNIT2" ] | ||
}, | ||
"dependencies": { | ||
"Microsoft.Data.Sqlite": "1.0.0-rc1-final", | ||
"System.Runtime": "4.0.21-*", | ||
"xunit": "2.1.0", | ||
"xunit.runner.dnx": "2.1.0-*" | ||
} | ||
"runtimes": { | ||
"win7-x64": { } | ||
} | ||
} | ||
} |
Oops, something went wrong.