aboutsummaryrefslogtreecommitdiff
path: root/appveyor.bat
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 /appveyor.bat
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 'appveyor.bat')
-rw-r--r--appveyor.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.bat b/appveyor.bat
index ca88b25c..e59ebccc 100644
--- a/appveyor.bat
+++ b/appveyor.bat
@@ -26,8 +26,8 @@ dotnet restore
dotnet build -c %configuration% || goto error
echo Testing C#
-dotnet run -c %configuration% -f netcoreapp1.0 -p Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error
-dotnet run -c %configuration% -f net451 -p Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error
+dotnet test -c %configuration% -f netcoreapp1.0 Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error
+dotnet test -c %configuration% -f net451 Google.Protobuf.Test\Google.Protobuf.Test.csproj || goto error
goto :EOF