您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

MQTTnet.Netstandard.csproj 2.7 KiB

7 年前
7 年前
7 年前
7 年前
7 年前
7 年前
7 年前
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>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>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. <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.3|AnyCPU'">
  34. <DefineConstants>RELEASE;NETSTANDARD1_3</DefineConstants>
  35. </PropertyGroup>
  36. <ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
  37. <PackageReference Include="System.Net.Security" Version="4.3.2" />
  38. <PackageReference Include="System.Net.WebSockets" Version="4.3.0" />
  39. <PackageReference Include="System.Net.WebSockets.Client" Version="4.3.1" />
  40. </ItemGroup>
  41. <ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
  42. <PackageReference Include="System.Net.Security" Version="4.3.2" />
  43. <PackageReference Include="System.Net.WebSockets" Version="4.3.0" />
  44. <PackageReference Include="System.Net.WebSockets.Client" Version="4.3.1" />
  45. </ItemGroup>
  46. <ItemGroup Condition="'$(TargetFramework)'=='uap10.0'">
  47. <PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="5.4.1" />
  48. </ItemGroup>
  49. <ItemGroup Condition="'$(TargetFramework)'=='net452'">
  50. </ItemGroup>
  51. <ItemGroup Condition="'$(TargetFramework)'=='net461'">
  52. </ItemGroup>
  53. </Project>