|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <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> |
4 | 14 | <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> |
5 | 25 | </PropertyGroup>
|
6 | 26 |
|
7 | 27 | <ItemGroup>
|
8 | 28 | <PackageReference Include="xunit" Version="2.3.1" />
|
9 | 29 | </ItemGroup>
|
10 | 30 |
|
| 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 | + |
11 | 37 | </Project>
|
0 commit comments