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.
 
 
 
 

42 lines
1.8 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard1.3;netstandard2.0;netstandard2.1;net5.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. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  11. <IncludeSymbols>true</IncludeSymbols>
  12. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
  15. <CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
  16. <NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker>
  17. <TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
  18. <TargetPlatformVersion>10.0.18362.0</TargetPlatformVersion>
  19. <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
  20. <TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
  21. <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
  22. <DefineConstants>$(DefineConstants);WINDOWS_UWP</DefineConstants>
  23. <DefaultLanguage>en</DefaultLanguage>
  24. <LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <PackageReference Include="WebSocket4Net" Version="0.15.2" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <ProjectReference Include="..\MQTTnet\MQTTnet.csproj" />
  34. </ItemGroup>
  35. </Project>