aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2018-04-04 17:01:09 -0700
committerGitHub <noreply@github.com>2018-04-04 17:01:09 -0700
commite7e6c6b8d1317aa315530024224bfb92e857daa0 (patch)
tree4fece38c58a556d42ea526c3a7f8876bbc1e8b3b /csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
parentc93174346149f259ebc85fdb46826fcf84abb07d (diff)
parentf72ac9f987168cb333a1ca0b6482737f7466b22a (diff)
downloadprotobuf-e7e6c6b8d1317aa315530024224bfb92e857daa0.tar.gz
protobuf-e7e6c6b8d1317aa315530024224bfb92e857daa0.tar.bz2
protobuf-e7e6c6b8d1317aa315530024224bfb92e857daa0.zip
Merge pull request #4283 from ObsidianMinor/csharp/better-test-runners
[C#] Update test project to be used with dotnet test and Visual Studio Test Explorer
Diffstat (limited to 'csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj')
-rw-r--r--csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj8
1 files changed, 4 insertions, 4 deletions
diff --git a/csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj b/csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
index 06d07b9f..6a430116 100644
--- a/csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
+++ b/csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
- <OutputType>Exe</OutputType>
<TargetFrameworks>net451;netcoreapp1.0</TargetFrameworks>
<AssemblyOriginatorKeyFile>../../keys/Google.Protobuf.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
@@ -14,8 +13,9 @@
</ItemGroup>
<ItemGroup>
- <PackageReference Include="NUnit" Version="3.6.1" />
- <PackageReference Include="NUnitLite" Version="3.6.1" />
+ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
+ <PackageReference Include="NUnit" Version="3.9.0" />
+ <PackageReference Include="NUnit3TestAdapter" Version="3.9.0" />
</ItemGroup>
<!--
@@ -26,5 +26,5 @@
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<TargetFrameworks>netcoreapp1.0</TargetFrameworks>
</PropertyGroup>
-
+
</Project>