Mark van Renswoude
bcdb376256
Added test for publish overflows Removed support for Unity Container Changed third party package references to ranges Fixed XML documentation
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<Authors>Menno van Lavieren, Mark van Renswoude</Authors>
|
|
<Company />
|
|
<Description></Description>
|
|
<PackageTags>rabbitmq tapeti flow</PackageTags>
|
|
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/MvRens/Tapeti</PackageProjectUrl>
|
|
<PackageIcon>Tapeti.Flow.png</PackageIcon>
|
|
<Version>2.0.0</Version>
|
|
<LangVersion>9</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<NoWarn>1701;1702</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'!='netstandard2.0'">
|
|
<!-- Suppress 'Use switch expression' which requires language version 8 not available in .NET Standard 2.0 -->
|
|
<NoWarn>IDE0066</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Tapeti\Tapeti.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\resources\icons\Tapeti.Flow.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
|
|
<PackageReference Include="Tapeti.Annotations" Version="3.*-*" />
|
|
</ItemGroup>
|
|
</Project>
|