rabbitmq-tutorials/dotnet-visual-studio/2_NewTask/2_NewTask.csproj
Oliver Freitag b0ab0e8793 switched all projects to new project file format and dotnet core 3.1
* simpler
* no need of config files
* runs under mac as well
2020-07-08 15:48:13 +02:00

12 lines
269 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="RabbitMQ.Client" Version="6.1.0" />
</ItemGroup>
</Project>