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.
 
 
 
 

30 line
1.2 KiB

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