rabbitmq-tutorials/dotnet-stream/Receive/Receive.csproj
Gabriele Santomaggio 0f18bb786e
Dotnet stream client tutorial getting started (#382)
* dotnet stream tutorial hello world

---------

Signed-off-by: Gabriele Santomaggio <g.santomaggio@gmail.com>
2024-05-09 09:22:21 +02:00

16 lines
424 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>ReceiveHello</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Stream.Client" Version="1.8.3" />
</ItemGroup>
</Project>