Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks>
- <TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(TargetFrameworks);net452;net461</TargetFrameworks>
- <TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' AND '$(MSBuildRuntimeType)' != 'Core' AND '$(SolutionName)' != 'MQTTnet.noUWP' ">$(TargetFrameworks);uap10.0</TargetFrameworks>
- <Product />
- <Company />
- <Authors />
- <PackageId />
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
- <CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
- <NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker>
- <TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
- <TargetPlatformVersion>10.0.17134.0</TargetPlatformVersion>
- <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
- <TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
- <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
- <DefineConstants>$(DefineConstants);WINDOWS_UWP</DefineConstants>
- <DefaultLanguage>en</DefaultLanguage>
- <LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="WebSocket4Net" Version="0.15.2" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\MQTTnet\MQTTnet.csproj" />
- </ItemGroup>
-
- </Project>
|