mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 19:32:51 +08:00
17 lines
364 B
Batchfile
17 lines
364 B
Batchfile
echo -------------------------
|
|
|
|
echo Restoring Ocelot
|
|
dotnet restore src/Ocelot
|
|
|
|
echo Restoring Ocelot.ManualTest
|
|
dotnet restore test/Ocelot.ManualTest/
|
|
|
|
echo Running Ocelot.UnitTests
|
|
dotnet restore test/Ocelot.UnitTests/
|
|
dotnet test test/Ocelot.UnitTests/
|
|
|
|
echo Running Ocelot.AcceptanceTests
|
|
cd test/Ocelot.AcceptanceTests/
|
|
dotnet restore
|
|
dotnet test
|
|
cd ../../ |