|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 |
| - <TargetFrameworks>net451;netstandard1.3;netstandard2.0</TargetFrameworks> |
5 |
| - <Version>2.1.0</Version> |
| 4 | + <TargetFrameworks>net461;netstandard2.0</TargetFrameworks> |
| 5 | + <Version>3.0.0</Version> |
6 | 6 | <Authors>Andrew Sumido</Authors>
|
7 | 7 | <Description>A light abstraction around Dapper and Dapper.Contrib that also maintains the behavior IDbConnection. This library facilitates a loosely coupled design and unit testing.</Description>
|
8 |
| - <PackageLicenseUrl>https://github.com/codeapologist/DataAbstractions.Dapper/blob/master/LICENSE</PackageLicenseUrl> |
| 8 | + <PackageLicenseUrl></PackageLicenseUrl> |
9 | 9 | <PackageProjectUrl>https://github.com/codeapologist/DataAbstractions.Dapper</PackageProjectUrl>
|
10 | 10 | <PackageTags>Dapper Dapper.Contrib IDbConnection Abstraction Unit Testing Interface Testability Tests Mock Unit Test</PackageTags>
|
11 |
| - <PackageReleaseNotes>Upgraded Dapper to v1.60.6 and Dapper.Contrib to v1.60.1</PackageReleaseNotes> |
| 11 | + <PackageReleaseNotes>Upgraded Dapper to v2.0.35 and Dapper.Contrib to v2.0.35. Bumping up major version because Dapper introduced a slight breaking change in version 2.0.4.</PackageReleaseNotes> |
12 | 12 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
13 | 13 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
| 14 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 15 | + <AssemblyVersion>3.0.0.0</AssemblyVersion> |
| 16 | + <FileVersion>3.0.0.0</FileVersion> |
| 17 | + <RepositoryUrl>https://github.com/codeapologist/DataAbstractions.Dapper</RepositoryUrl> |
14 | 18 | </PropertyGroup>
|
15 | 19 |
|
16 | 20 | <ItemGroup>
|
17 |
| - <PackageReference Include="Dapper" Version="1.60.6" /> |
18 |
| - <PackageReference Include="Dapper.Contrib" Version="1.60.1" /> |
| 21 | + <PackageReference Include="Dapper" Version="2.0.35" /> |
| 22 | + <PackageReference Include="Dapper.Contrib" Version="2.0.35" /> |
| 23 | + </ItemGroup> |
| 24 | + |
| 25 | + <ItemGroup> |
| 26 | + <None Include="..\..\LICENSE"> |
| 27 | + <Pack>True</Pack> |
| 28 | + <PackagePath></PackagePath> |
| 29 | + </None> |
19 | 30 | </ItemGroup>
|
20 | 31 |
|
21 | 32 | </Project>
|
0 commit comments