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.
 
 
 
 

25 line
954 B

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <DebugType>Full</DebugType>
  5. <TargetFrameworks>netcoreapp2.1</TargetFrameworks>
  6. <TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(TargetFrameworks);net452;net461</TargetFrameworks>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.1|AnyCPU'">
  9. <DefineConstants>RELEASE;NETCOREAPP2_1</DefineConstants>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\..\Source\MQTTnet.Extensions.ManagedClient\MQTTnet.Extensions.ManagedClient.csproj" />
  16. <ProjectReference Include="..\..\Source\MQTTnet.Extensions.WebSocket4Net\MQTTnet.Extensions.WebSocket4Net.csproj" />
  17. <ProjectReference Include="..\..\Source\MQTTnet\MQTTnet.csproj" />
  18. </ItemGroup>
  19. </Project>