12345678910111213141516171819 |
- <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <UseWindowsForms>true</UseWindowsForms>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
- <PackageReference Include="QRCoder" Version="1.4.3" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Core.RabbitMQBus.Common\Core.RabbitMQBus.Common.csproj" />
- <ProjectReference Include="..\Core.RabbitMQBus\Core.RabbitMQBus.csproj" />
- </ItemGroup>
- </Project>
|