@@ -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> | ||||
@@ -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> | ||||
@@ -1,9 +1,16 @@ | |||||
version: 1.0.{build} | version: 1.0.{build} | ||||
image: Visual Studio 2017 | image: Visual Studio 2017 | ||||
configuration: Release | |||||
before_build: | before_build: | ||||
- cmd: dotnet restore | |||||
- cmd: >- | |||||
msbuild /t:restore | |||||
cd Tests/MQTTnet.TestApp.AspNetCore2/ | |||||
npm install | |||||
build: | build: | ||||
project: Frameworks/MQTTnet.NetStandard/MQTTnet.Netstandard.csproj | |||||
project: MQTTnet.sln | |||||
verbosity: minimal | verbosity: minimal | ||||
test_script: | test_script: | ||||
- cmd: dotnet test Tests/MQTTnet.Core.Tests/MQTTnet.Core.Tests.csproj | |||||
- cmd: dotnet vstest "%APPVEYOR_BUILD_FOLDER%\Tests\MQTTnet.Core.Tests\bin\Release\netcoreapp2.0\MQTTnet.Core.Tests.dll" |