Skip to content

Commit 3fcd129

Browse files
committedMar 15, 2021
Update nuget package
1 parent 2b5f97c commit 3fcd129

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed
 

‎Dapper.SimpleCRUD.nuspec

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>Dapper.SimpleCRUD</id>
5-
<version>2.2.0.1</version>
5+
<version>2.3.0.0</version>
66
<title>Dapper.SimpleCRUD</title>
77
<authors>Eric Coffman</authors>
88
<owners>Eric Coffman</owners>
99
<projectUrl>http://github.com/ericdc1/Dapper.SimpleCRUD/</projectUrl>
1010
<license type="file">License.txt</license>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<icon>images\SimpleCRUD-200x200.png</icon>
1213
<description>
1314
Simple Get, GetList, GetListPaged, Insert, Update, Delete, DeleteList, and RecordCount extensions for Dapper. Uses smart defaults for attribute free classes but can be overridden as needed.
1415
By default uses Id column as the primary key but this can be overridden with an attribute
@@ -49,14 +50,14 @@
4950
* version 2.0.1 Re-add SQLite, allow string primary keys
5051
* version 2.1.0 Speed improvements (thanks jonathanlarouche)
5152
* version 2.2.0 Dapper 2.x support
53+
* version 2.3.0 Update DB2 support (mvaz77), Interface support (jonathanlarouche)
5254
</releaseNotes>
5355
<copyright>Copyright Eric Coffman 2019</copyright>
5456
<tags>orm dapper micro-orm CRUD</tags>
55-
<iconUrl>https://raw.githubusercontent.com/ericdc1/Dapper.SimpleCRUD/master/images/SimpleCRUD-200x200.png</iconUrl>
5657
<dependencies>
5758
<group targetFramework=".NETStandard2.0">
5859
<dependency id="Microsoft.CSharp" version="4.4.0" />
59-
<dependency id="Dapper" version="2.*" />
60+
<dependency id="Dapper" version="2.0.78" />
6061
</group>
6162
</dependencies>
6263

@@ -88,5 +89,6 @@
8889
<file src="Dapper.SimpleCRUD\bin\Release\netstandard2.0\Dapper.SimpleCRUD.pdb" target="lib\netstandard2.0\Dapper.SimpleCRUD.pdb" />
8990
<file src="Dapper.SimpleCRUD\bin\Release\netstandard2.0\Dapper.SimpleCRUD.xml" target="lib\netstandard2.0\Dapper.SimpleCRUD.xml" />
9091
<file src="License.txt" target="" />
92+
<file src="images\SimpleCRUD-200x200.png" target="images\" />
9193
</files>
9294
</package>

‎History.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@
3636
* version 2.0.0 Bug fixes, .Net Core support, removed SQLite since it doesn't support .net core yet
3737
* version 2.0.1 Re-add SQLite, allow string primary keys
3838
* version 2.1.0 Speed improvements (thanks jonathanlarouche)
39-
* version 2.2.0 Dapper 2.x support
39+
* version 2.2.0 Dapper 2.x support
40+
* version 2.3.0 Update DB2 support (mvaz77), Interface support (jonathanlarouche)

‎NuGet.exe

953 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.