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.
 
 
 
 

68 regels
2.9 KiB

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