Browse Source

Merge pull request #89 from JanEggers/develop

Develop
release/3.x.x
Christian 7 years ago
committed by GitHub
parent
commit
d335b6393e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions
  1. +2
    -2
      Tests/MQTTnet.Core.Tests/MQTTnet.Core.Tests.csproj
  2. +1
    -1
      Tests/MQTTnet.TestApp.UniversalWindows/MQTTnet.TestApp.UniversalWindows.csproj
  3. +2
    -1
      appveyor.yml

+ 2
- 2
Tests/MQTTnet.Core.Tests/MQTTnet.Core.Tests.csproj View File

@@ -8,8 +8,8 @@


<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.2" /> <PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.2" />
<PackageReference Include="MSTest.TestAdapter" Version="1.1.18" />
<PackageReference Include="MSTest.TestFramework" Version="1.1.18" />
<PackageReference Include="MSTest.TestAdapter" Version="1.2.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" /> <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
</ItemGroup> </ItemGroup>




+ 1
- 1
Tests/MQTTnet.TestApp.UniversalWindows/MQTTnet.TestApp.UniversalWindows.csproj View File

@@ -166,7 +166,7 @@
<NoWarn>;2008</NoWarn> <NoWarn>;2008</NoWarn>
<NoStdLib>true</NoStdLib> <NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<PlatformTarget>x86</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess> <UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport> <ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>


+ 2
- 1
appveyor.yml View File

@@ -1,5 +1,6 @@
version: 1.0.{build} version: 1.0.{build}
image: Visual Studio 2017 image: Visual Studio 2017
configuration: Release
before_build: before_build:
- cmd: >- - cmd: >-
msbuild /t:restore msbuild /t:restore
@@ -12,4 +13,4 @@ build:
project: MQTTnet.sln project: MQTTnet.sln
verbosity: minimal verbosity: minimal
test_script: test_script:
- cmd: vstest.console /logger:Appveyor Tests/MQTTnet.Core.Tests/bin/Release/net461/MQTTnet.Core.Tests.dll
- cmd: dotnet vstest "%APPVEYOR_BUILD_FOLDER%\Tests\MQTTnet.Core.Tests\bin\Release\netcoreapp2.0\MQTTnet.Core.Tests.dll"

Loading…
Cancel
Save