Skip to content

Commit ecb7118

Browse files
committed
Add NuGet package attributes and sign package.
1 parent 2bf7797 commit ecb7118

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

MySqlConnector.snk

2.27 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,37 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<AssemblyName>AdoNet.Specification.Tests</AssemblyName>
5+
<PackageId>AdoNet.Specification.Tests</PackageId>
6+
<Title>ADO.NET Specification Tests</Title>
7+
<Description>Shared test suite for ADO.NET providers.</Description>
8+
<Copyright>Copyright 2017 Bradley Grainger</Copyright>
9+
<VersionPrefix>1.0.0</VersionPrefix>
10+
<SignAssembly>true</SignAssembly>
11+
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
12+
<AssemblyOriginatorKeyFile>..\..\MySqlConnector.snk</AssemblyOriginatorKeyFile>
13+
<Authors>Bradley Grainger</Authors>
414
<TargetFramework>netstandard2.0</TargetFramework>
15+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
16+
<PackageTags>ado.net;database;test</PackageTags>
17+
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
18+
<PackageProjectUrl>https://github.com/mysql-net/AdoNetApiTest</PackageProjectUrl>
19+
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
20+
<RepositoryType>git</RepositoryType>
21+
<RepositoryUrl>https://github.com/mysql-net/AdoNetApiTest.git</RepositoryUrl>
22+
<DebugType>embedded</DebugType>
23+
<LangVersion>latest</LangVersion>
24+
<IsPackable>true</IsPackable>
525
</PropertyGroup>
626

727
<ItemGroup>
828
<PackageReference Include="xunit" Version="2.3.1" />
929
</ItemGroup>
1030

31+
<ItemGroup Condition=" '$(OS)' == 'Windows_NT' ">
32+
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.5.0" PrivateAssets="All" />
33+
<DotNetCliToolReference Include="dotnet-sourcelink" Version="2.5.0" />
34+
<PackageReference Include="SourceLink.Test" Version="2.5.0" PrivateAssets="all" />
35+
</ItemGroup>
36+
1137
</Project>

0 commit comments

Comments
 (0)