-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Directory.Build.props
26 lines (25 loc) · 1.25 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<PackageId>$(AssemblyName)</PackageId>
<VersionPrefix>0.2.0</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<Description>Microcks.Testcontainers for .NET</Description>
<Authors>Sébastien DEGODEZ</Authors>
<PackageIconUrl>https://microcks.io/images/logo/microcks-logo-blue_hu47af0efdf36fc5a7558391bac5ae3ba7_29309_374x332_resize_lanczos_3.png</PackageIconUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageTags>docker;dotnet;testcontainers;testing;microcks</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/microcks/microcks-testcontainers-dotnet</RepositoryUrl>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>