rabbitmq-tutorials/dotnet/EmitLogDirect/EmitLogDirect.csproj
Luke Bakken a4adce94c9
Update dotnet tutorials to use 7.0.0
* Specify unix line endings so that `christian-bromann/docusaurus-theme-github-codeblock` formats code blocks correctly
* Fix RPC examples
2024-11-06 08:44:10 -08:00

15 lines
339 B
XML

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