|
12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFrameworks>netstandard2.0;netcoreapp2.1</TargetFrameworks>
- <Product />
- <Company />
- <Authors />
- <PackageId />
- <LangVersion>7.2</LangVersion>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>RELEASE;NETSTANDARD2_0</DefineConstants>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="2.1.3" />
- <PackageReference Include="Microsoft.AspNetCore.Http.Connections" Version="1.0.3" />
- <PackageReference Include="Microsoft.AspNetCore.WebSockets" Version="2.1.1" />
- <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="2.1.1" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\MQTTnet\MQTTnet.csproj" />
- </ItemGroup>
-
- </Project>
|