File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ set CURRENT_CONFIGURATION=%~dp0current-test-configuration
9
9
set NUNIT = " %~dp0 Tools\NUnit.ConsoleRunner.3.10.0\tools\nunit3-console.exe"
10
10
11
11
if not exist %BUILD_TOOL_PATH% (
12
- dotnet build %~dp0 Tools\BuildTool\BuildTool.sln -c Release -o bin
12
+ pushd %~dp0 Tools\BuildTool
13
+ dotnet build BuildTool.sln -c Release -o bin
14
+ popd
13
15
)
14
16
15
17
:main-menu
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
3
3
cd " $( dirname " $0 " ) "
4
+ SCRIPT_PATH=" $( pwd) "
4
5
BUILD_TOOL_PATH=" ./Tools/BuildTool/bin/BuildTool.dll"
5
6
BUILD_TOOL=" dotnet $BUILD_TOOL_PATH "
6
7
AVAILABLE_CONFIGURATIONS=" available-test-configurations"
@@ -14,8 +15,10 @@ async_generator_path=""
14
15
15
16
if [ ! -f $BUILD_TOOL_PATH ]
16
17
then
17
- dotnet build ./Tools/BuildTool/BuildTool.sln -c Release -o bin
18
+ cd ./Tools/BuildTool
19
+ dotnet build BuildTool.sln -c Release -o bin
18
20
fi
21
+ cd " $SCRIPT_PATH "
19
22
20
23
buildDebug (){
21
24
dotnet build ./src/NHibernate.sln
You can’t perform that action at this time.
0 commit comments