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.
 
 
 
 

61 lines
2.5 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard1.3;netstandard2.0;net452;net461;uap10.0</TargetFrameworks>
  4. <AssemblyName>MQTTnet</AssemblyName>
  5. <RootNamespace>MQTTnet</RootNamespace>
  6. <GeneratePackageOnBuild>False</GeneratePackageOnBuild>
  7. <DebugType>Full</DebugType>
  8. <AssemblyVersion>2.5.3.0</AssemblyVersion>
  9. <FileVersion>2.5.3.0</FileVersion>
  10. <Version>0.0.0.0</Version>
  11. <Company />
  12. <Product />
  13. <Description />
  14. <Authors />
  15. <PackageId />
  16. <SignAssembly>true</SignAssembly>
  17. <AssemblyOriginatorKeyFile>codeSigningKey.pfx</AssemblyOriginatorKeyFile>
  18. <DelaySign>false</DelaySign>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
  21. <CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
  22. <NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker>
  23. <TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
  24. <TargetPlatformVersion>10.0.16299.0</TargetPlatformVersion>
  25. <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
  26. <TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
  27. <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
  28. <DefineConstants>$(DefineConstants);WINDOWS_UWP</DefineConstants>
  29. <LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" />
  32. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
  33. <ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
  34. <PackageReference Include="System.Net.Security" Version="4.3.2" />
  35. <PackageReference Include="System.Net.WebSockets" Version="4.3.0" />
  36. <PackageReference Include="System.Net.WebSockets.Client" Version="4.3.1" />
  37. </ItemGroup>
  38. <ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
  39. <PackageReference Include="System.Net.Security" Version="4.3.2" />
  40. <PackageReference Include="System.Net.WebSockets" Version="4.3.0" />
  41. <PackageReference Include="System.Net.WebSockets.Client" Version="4.3.1" />
  42. </ItemGroup>
  43. <ItemGroup Condition="'$(TargetFramework)'=='uap10.0'">
  44. <PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="5.4.1" />
  45. </ItemGroup>
  46. <ItemGroup Condition="'$(TargetFramework)'=='net452'">
  47. </ItemGroup>
  48. <ItemGroup Condition="'$(TargetFramework)'=='net461'">
  49. </ItemGroup>
  50. </Project>