25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

MQTTnet.Netstandard.csproj 2.2 KiB

7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
7 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard1.3;net451;uap10.0</TargetFrameworks>
  4. <AssemblyName>MQTTnet</AssemblyName>
  5. <RootNamespace>MQTTnet</RootNamespace>
  6. <AssemblyVersion>2.5.0.0</AssemblyVersion>
  7. <FileVersion>2.5.0.0</FileVersion>
  8. <Version>0.0.0.0</Version>
  9. <Company />
  10. <Product />
  11. <Description />
  12. <Authors />
  13. <PackageId />
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
  16. <CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
  17. <NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker>
  18. <TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
  19. <TargetPlatformVersion>10.0.15063.0</TargetPlatformVersion>
  20. <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
  21. <TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
  22. <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
  23. <DefineConstants>$(DefineConstants);WINDOWS_UWP</DefineConstants>
  24. <LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" />
  27. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
  28. <ItemGroup>
  29. <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.1" />
  30. <PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.2" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <ProjectReference Include="..\..\MQTTnet.Core\MQTTnet.Core.csproj" />
  34. </ItemGroup>
  35. <ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
  36. <PackageReference Include="System.Net.Security" Version="4.3.2" />
  37. <PackageReference Include="System.Net.WebSockets" Version="4.3.0" />
  38. <PackageReference Include="System.Net.WebSockets.Client" Version="4.3.1" />
  39. <PackageReference Include="System.Threading.Thread" Version="4.3.0" />
  40. </ItemGroup>
  41. <ItemGroup Condition="'$(TargetFramework)'=='uap10.0'">
  42. <PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="5.4.0" />
  43. </ItemGroup>
  44. </Project>