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.
 
 
 
 

31 line
1.3 KiB

  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'">$(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>