Explorar el Código

Adjusted appveyor batch

ObsidianMinor hace 7 años
padre
commit
a731ecb471
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      appveyor.bat

+ 2 - 2
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