選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

MQTTnet.Extensions.ManagedClient.csproj 1.4 KiB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks>
  4. <TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(TargetFrameworks);net452;net461</TargetFrameworks>
  5. <TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' AND '$(MSBuildRuntimeType)' != 'Core' AND '$(SolutionName)' != 'MQTTnet.noUWP' ">$(TargetFrameworks);uap10.0</TargetFrameworks>
  6. <Product />
  7. <Company />
  8. <Authors />
  9. <PackageId />
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
  12. <CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
  13. <NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker>
  14. <TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
  15. <TargetPlatformVersion>10.0.17134.0</TargetPlatformVersion>
  16. <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
  17. <TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
  18. <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
  19. <DefineConstants>$(DefineConstants);WINDOWS_UWP</DefineConstants>
  20. <DefaultLanguage>en</DefaultLanguage>
  21. <LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\MQTTnet\MQTTnet.csproj" />
  25. </ItemGroup>
  26. </Project>