2019-07-18 08:02:42 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2019-08-14 10:20:53 +00:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2021-05-29 10:40:12 +00:00
|
|
|
<Authors>Mark van Renswoude</Authors>
|
|
|
|
<Company />
|
|
|
|
<Description>Additional DataAnnotations attributes. Not specific to Tapeti, but useful for annotating message classes.</Description>
|
|
|
|
<PackageTags>rabbitmq tapeti dataannotations</PackageTags>
|
|
|
|
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
|
|
|
|
<PackageProjectUrl>https://github.com/MvRens/Tapeti</PackageProjectUrl>
|
|
|
|
<PackageIcon>Tapeti.DataAnnotations.png</PackageIcon>
|
2019-10-01 08:18:02 +00:00
|
|
|
<Version>2.0.0</Version>
|
2019-07-18 08:02:42 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-08-13 18:30:04 +00:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2019-08-14 10:20:53 +00:00
|
|
|
<NoWarn>1701;1702</NoWarn>
|
2019-08-13 18:30:04 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-07-18 08:02:42 +00:00
|
|
|
<ItemGroup>
|
2021-05-29 19:51:58 +00:00
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
2019-07-18 08:02:42 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-05-29 10:40:12 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<None Include="..\resources\icons\Tapeti.DataAnnotations.png">
|
|
|
|
<Pack>True</Pack>
|
|
|
|
<PackagePath></PackagePath>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2019-07-18 08:02:42 +00:00
|
|
|
</Project>
|