-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy patheasydb.nuspec
More file actions
41 lines (41 loc) · 2.12 KB
/
easydb.nuspec
File metadata and controls
41 lines (41 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>EasyDb.NET</id>
<version>0.88</version>
<title>EasyDb.NET</title>
<authors>Longshine</authors>
<owners>Longshine</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://github.com/longshine/EasyDb.NET</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An easy database helper for .NET 2.0+, with typed query & simple ORM, hibernate-like dialecting & criterion query, supporting all .NET ADO providers, implemented on Dapper.</description>
<summary>An Easy Database Helper (Typed Query & Simple ORM) for .NET</summary>
<releaseNotes>* 0.88 - Update Dapper to v1.38
- Added: dependencies via NuGet
- Added: string comparer of column names for result set
- Fixed: do not auto map nonpublic fields
* 0.87 - Update Dapper to v1.37
- Added: shortcut methods for building connection factory.
- Added: comments
* 0.84 - First release built on Dapper
- Added: enhanced query helper methods
- Added: strong/weak typed CRUD query
- Added: custom ORM attributes
- Added: criterion query
- Added: dialecting</releaseNotes>
<tags>orm, sql, database, db helper, sqlite, mysql</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System"/>
<frameworkAssembly assemblyName="System.Configuration"/>
<frameworkAssembly assemblyName="System.Data"/>
<frameworkAssembly assemblyName="System.Xml"/>
</frameworkAssemblies>
</metadata>
<files>
<file src="EasyDb.NET\bin\Release\Net20\EasyDb.NET.dll" target="lib\net20\EasyDb.NET.dll" />
<file src="EasyDb.NET\bin\Release\Net20\EasyDb.NET.xml" target="lib\net20\EasyDb.NET.xml" />
<file src="EasyDb.NET\bin\Release\Net40\EasyDb.NET.dll" target="lib\net40\EasyDb.NET.dll" />
<file src="EasyDb.NET\bin\Release\Net40\EasyDb.NET.xml" target="lib\net40\EasyDb.NET.xml" />
</files>
</package>