Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

MQTTnet.Benchmarks.csproj 796 B

12345678910111213141516171819202122
  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>