Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Dapper
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
Dapper
Commits
1fc06af5
Commit
1fc06af5
authored
Apr 29, 2015
by
Marc Gravell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.41-alpha deploy
parent
eb245cc8
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
154 additions
and
22 deletions
+154
-22
SqlMapper.cs
Dapper NET40/SqlMapper.cs
+5
-1
project.json
Dapper.DNX.Tests/project.json
+2
-2
project.lock.json
Dapper.DNX.Tests/project.lock.json
+55
-4
project.json
Dapper/project.json
+18
-12
project.lock.json
Dapper/project.lock.json
+74
-3
No files found.
Dapper NET40/SqlMapper.cs
View file @
1fc06af5
...
@@ -6,6 +6,10 @@
...
@@ -6,6 +6,10 @@
I know the difference between language and runtime versions; this is a compromise).
I know the difference between language and runtime versions; this is a compromise).
*/
*/
#if DNXCORE50
using
IDbDataParameter
=
System
.
Data
.
Common
.
DbParameter
;
#endif
using
System
;
using
System
;
using
System.Collections
;
using
System.Collections
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
...
...
Dapper.DNX.Tests/project.json
View file @
1fc06af5
{
{
"version"
:
"1.0.0-*"
,
"version"
:
"1.0.0-*"
,
"dependencies"
:
{
"dependencies"
:
{
"Dapper"
:
"1.4
0
-*"
"Dapper"
:
"1.4
1
-*"
},
},
"commands"
:
{
"commands"
:
{
"Dapper.DNX.Tests"
:
"Dapper.DNX.Tests"
"Dapper.DNX.Tests"
:
"Dapper.DNX.Tests"
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
"System.Data"
:
"4.0.0.0"
"System.Data"
:
"4.0.0.0"
}
}
}
,
}
//
"dnxcore50"
:
{
//
"dnxcore50"
:
{
//
"dependencies"
:
{
//
"dependencies"
:
{
//
"System.Console"
:
"4.0.0-beta-22716"
//
"System.Console"
:
"4.0.0-beta-22716"
...
...
Dapper.DNX.Tests/project.lock.json
View file @
1fc06af5
{
{
"locked"
:
false
,
"locked"
:
false
,
"version"
:
-9998
,
"version"
:
-9997
,
"targets"
:
{
".NETFramework,Version=v4.5"
:
{
"Dapper/1.41-alpha"
:
{
"frameworkAssemblies"
:
[
"System.Data"
,
"mscorlib"
,
"System"
,
"System.Core"
,
"Microsoft.CSharp"
],
"compile"
:
[
"lib/net45/Dapper.dll"
],
"runtime"
:
[
"lib/net45/Dapper.dll"
]
}
},
"DNX,Version=v4.5.1"
:
{
"Dapper/1.41-alpha"
:
{
"frameworkAssemblies"
:
[
"System.Data"
,
"mscorlib"
,
"System"
,
"System.Core"
,
"Microsoft.CSharp"
],
"compile"
:
[
"lib/dnx451/Dapper.dll"
],
"runtime"
:
[
"lib/dnx451/Dapper.dll"
]
}
}
},
"libraries"
:
{
"Dapper/1.41-alpha"
:
{
"sha512"
:
"dJPrw+E8nGHRydGRUddbjGUxQBR9w4d8ISLD8QM24FsRihEJjjlww+AFb77mK78qGFwkHAnpY2k8oZfpLR61gg=="
,
"files"
:
[
"Dapper.1.41-alpha.nupkg"
,
"Dapper.1.41-alpha.nupkg.sha512"
,
"Dapper.nuspec"
,
"lib/dnx451/Dapper.dll"
,
"lib/dnx451/Dapper.xml"
,
"lib/net40/Dapper.dll"
,
"lib/net40/Dapper.xml"
,
"lib/net45/Dapper.dll"
,
"lib/net45/Dapper.xml"
]
}
},
"projectFileDependencyGroups"
:
{
"projectFileDependencyGroups"
:
{
""
:
[
""
:
[
"Dapper >= 1.4
0
-*"
"Dapper >= 1.4
1
-*"
],
],
".NETFramework,Version=v4.5"
:
[
".NETFramework,Version=v4.5"
:
[
"framework/System.Data >= 4.0.0.0"
"framework/System.Data >= 4.0.0.0"
...
@@ -11,6 +63,5 @@
...
@@ -11,6 +63,5 @@
"DNX,Version=v4.5.1"
:
[
"DNX,Version=v4.5.1"
:
[
"framework/System.Data >= 4.0.0.0"
"framework/System.Data >= 4.0.0.0"
]
]
},
}
"libraries"
:
{}
}
}
\ No newline at end of file
Dapper/project.json
View file @
1fc06af5
{
{
"authors"
:
[
"Sam Saffron"
,
"Marc Gravell"
],
"authors"
:
[
"Sam Saffron"
,
"Marc Gravell"
],
"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.4
0-*
"
,
"version"
:
"1.4
1-alpha
"
,
"compile"
:
[
"../Dapper NET40/*.cs"
,
"../Dapper NET45/*.cs"
],
"compile"
:
[
"../Dapper NET40/*.cs"
,
"../Dapper NET45/*.cs"
],
"frameworks"
:
{
"frameworks"
:
{
"net45"
:
{
"net45"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
]
},
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
]
,
"warningsAsErrors"
:
true
},
"dependencies"
:
{
"dependencies"
:
{
},
},
"frameworkAssemblies"
:
{
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
"System.Data"
:
"4.0.0.0"
}
}
},
},
//
"net40"
:
{
"net40"
:
{
//
"dependencies"
:
{
"compilationOptions"
:
{
"warningsAsErrors"
:
true
},
//
},
//
"frameworkAssemblies"
:
{
//
"System.Data"
:
"4.0.0.0"
//
}
//
},
"dnx451"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
]
},
"dependencies"
:
{
"dependencies"
:
{
},
},
"frameworkAssemblies"
:
{
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
"System.Data"
:
"4.0.0.0"
}
}
},
"dnx451"
:
{
"compilationOptions"
:
{
"define"
:
[
"ASYNC"
],
"warningsAsErrors"
:
true
},
"dependencies"
:
{
},
"frameworkAssemblies"
:
{
"System.Data"
:
"4.0.0.0"
}
}
},
//
"dnxcore50"
:
{
//
"dnxcore50"
:
{
//
"dependencies"
:
{
//
"dependencies"
:
{
//
"System.Runtime"
:
"4.0.20-beta-22716"
//
"System.Runtime"
:
"4.0.20-beta-22716"
,
//
"System.Data.Common"
:
"4.0.0-beta-*"
,
//
},
//
"frameworkAssemblies"
:
{
//
//
//
}
//
}
//
}
//
}
}
}
...
...
Dapper/project.lock.json
View file @
1fc06af5
{
{
"locked"
:
false
,
"locked"
:
false
,
"version"
:
-9998
,
"version"
:
-9997
,
"targets"
:
{
".NETFramework,Version=v4.5"
:
{
"Dapper/1.41-alpha"
:
{
"frameworkAssemblies"
:
[
"System.Data"
,
"mscorlib"
,
"System"
,
"System.Core"
,
"Microsoft.CSharp"
],
"compile"
:
[
"lib/net45/Dapper.dll"
],
"runtime"
:
[
"lib/net45/Dapper.dll"
]
}
},
".NETFramework,Version=v4.0"
:
{
"Dapper/1.41-alpha"
:
{
"frameworkAssemblies"
:
[
"System.Data"
,
"mscorlib"
,
"System"
,
"System.Core"
,
"Microsoft.CSharp"
],
"compile"
:
[
"lib/net40/Dapper.dll"
],
"runtime"
:
[
"lib/net40/Dapper.dll"
]
}
},
"DNX,Version=v4.5.1"
:
{
"Dapper/1.41-alpha"
:
{
"frameworkAssemblies"
:
[
"System.Data"
,
"mscorlib"
,
"System"
,
"System.Core"
,
"Microsoft.CSharp"
],
"compile"
:
[
"lib/dnx451/Dapper.dll"
],
"runtime"
:
[
"lib/dnx451/Dapper.dll"
]
}
}
},
"libraries"
:
{
"Dapper/1.41-alpha"
:
{
"sha512"
:
"dJPrw+E8nGHRydGRUddbjGUxQBR9w4d8ISLD8QM24FsRihEJjjlww+AFb77mK78qGFwkHAnpY2k8oZfpLR61gg=="
,
"files"
:
[
"Dapper.1.41-alpha.nupkg"
,
"Dapper.1.41-alpha.nupkg.sha512"
,
"Dapper.nuspec"
,
"lib/dnx451/Dapper.dll"
,
"lib/dnx451/Dapper.xml"
,
"lib/net40/Dapper.dll"
,
"lib/net40/Dapper.xml"
,
"lib/net45/Dapper.dll"
,
"lib/net45/Dapper.xml"
]
}
},
"projectFileDependencyGroups"
:
{
"projectFileDependencyGroups"
:
{
""
:
[],
""
:
[],
".NETFramework,Version=v4.5"
:
[
".NETFramework,Version=v4.5"
:
[
"framework/System.Data >= 4.0.0.0"
"framework/System.Data >= 4.0.0.0"
],
],
".NETFramework,Version=v4.0"
:
[
"framework/System.Data >= 4.0.0.0"
],
"DNX,Version=v4.5.1"
:
[
"DNX,Version=v4.5.1"
:
[
"framework/System.Data >= 4.0.0.0"
"framework/System.Data >= 4.0.0.0"
]
]
},
}
"libraries"
:
{}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment