Skip to content

Commit 557be74

Browse files
committed
netcoreapp fixes
1 parent 7dad62b commit 557be74

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

projects/client/Unit/Unit.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
<PackageReference Include="NUnit3TestAdapter" Version="3.8.0" />
2424
</ItemGroup>
2525

26-
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
26+
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
2727
<PackageReference Include="System.Runtime" Version="4.3.0" />
2828
<PackageReference Include="System.Collections.NonGeneric" Version="4.3.0" />
2929
</ItemGroup>
3030

31-
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
31+
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
3232
<DefineConstants>$(DefineConstants);CORECLR</DefineConstants>
3333
</PropertyGroup>
3434

run-test.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dotnet restore .\projects\client\RabbitMQ.Client || exit /b
44
dotnet build .\projects\client\RabbitMQ.Client -f netstandard1.5 || exit /b
55
dotnet restore .\projects\client\Unit || exit /b
66
dotnet build .\projects\client\Unit || exit /b
7-
CD .\projects\client\Unit
8-
dotnet test -f netcoreapp1.0 --where="cat != RequireSMP & cat != LongRunning & cat != GCTest"
9-
CD ..\..\..
7+
CD .\projects\client\Unit
8+
dotnet test -f netcoreapp2.0 --where="cat != RequireSMP & cat != LongRunning & cat != GCTest"
9+
CD ..\..\..

0 commit comments

Comments
 (0)