You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MQTTnet.AspNetCore.csproj 950 B

6 years ago
12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.0;netcoreapp2.1</TargetFrameworks>
  4. <Product />
  5. <Company />
  6. <Authors />
  7. <PackageId />
  8. <LangVersion>7.2</LangVersion>
  9. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <DefineConstants>RELEASE;NETSTANDARD2_0</DefineConstants>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="2.1.3" />
  16. <PackageReference Include="Microsoft.AspNetCore.Http.Connections" Version="1.0.3" />
  17. <PackageReference Include="Microsoft.AspNetCore.WebSockets" Version="2.1.1" />
  18. <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="2.1.1" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\MQTTnet\MQTTnet.csproj" />
  22. </ItemGroup>
  23. </Project>