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.TestApp.NetCore.csproj 833 B

7 years ago
7 years ago
1234567891011121314151617181920212223
  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.1" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\..\Source\MQTTnet.Extensions.ManagedClient\MQTTnet.Extensions.ManagedClient.csproj" />
  16. <ProjectReference Include="..\..\Source\MQTTnet\MQTTnet.csproj" />
  17. </ItemGroup>
  18. </Project>