-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathbd.bat
More file actions
33 lines (25 loc) · 512 Bytes
/
bd.bat
File metadata and controls
33 lines (25 loc) · 512 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@echo off
echo:
echo:## Starting: RESTORE and BUILD...
echo:
dotnet clean -v:m
dotnet build -c:Release -v:m
if %ERRORLEVEL% neq 0 goto :error
echo:
echo:## Finished: RESTORE and BUILD
echo:
echo:## Starting: TESTS...
echo:
dotnet test --no-build -c Release test/ImTools.UnitTests/ImTools.UnitTests.csproj
if %ERRORLEVEL% neq 0 goto :error
echo:
echo:## Finished: TESTS
echo:
echo:## Finished: ALL ##
echo:
exit /b 0
:error
echo:
echo:## :-( Failed with ERROR: %ERRORLEVEL%
echo:
exit /b %ERRORLEVEL%