1
0
mirror of synced 2024-06-29 07:17:39 +00:00
Tapeti/Tapeti.Flow/Tapeti.Flow.csproj

43 lines
1.4 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2018-06-11 07:51:15 +00:00
2016-12-07 09:19:16 +00:00
<PropertyGroup>
2022-11-17 14:22:16 +00:00
<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>
2022-11-17 14:22:16 +00:00
<LangVersion>9</LangVersion>
<Nullable>enable</Nullable>
2016-12-07 09:19:16 +00:00
</PropertyGroup>
2018-06-11 07:51:15 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702</NoWarn>
</PropertyGroup>
2022-02-09 08:19:56 +00:00
<PropertyGroup Condition="'$(TargetFramework)'!='netstandard2.0'">
<!-- Suppress 'Use switch expression' which requires language version 8 not available in .NET Standard 2.0 -->
2022-02-09 08:19:56 +00:00
<NoWarn>IDE0066</NoWarn>
</PropertyGroup>
<ItemGroup>
2018-06-11 07:51:15 +00:00
<ProjectReference Include="..\Tapeti\Tapeti.csproj" />
</ItemGroup>
2018-06-11 07:51:15 +00:00
<ItemGroup>
<None Include="..\resources\icons\Tapeti.Flow.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
2021-09-16 09:41:03 +00:00
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Tapeti.Annotations" Version="3.*-*" />
2021-09-16 09:41:03 +00:00
</ItemGroup>
2018-06-11 07:51:15 +00:00
</Project>