25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
796 B

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <DebugType>Full</DebugType>
  5. <TargetFramework Condition=" '$(OS)' == 'Windows_NT' ">net461</TargetFramework>
  6. <TargetFramework Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.1</TargetFramework>
  7. <LangVersion>7.2</LangVersion>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="BenchmarkDotNet" Version="0.11.3" />
  11. <PackageReference Include="System.IO.Pipelines" Version="4.5.2" />
  12. <PackageReference Include="Microsoft.AspNetCore" Version="2.1.6" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\..\Source\MQTTnet.AspnetCore\MQTTnet.AspNetCore.csproj" />
  16. <ProjectReference Include="..\..\Source\MQTTnet\MQTTnet.csproj" />
  17. </ItemGroup>
  18. </Project>