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
99set NUNIT = " %~dp0 Tools\NUnit.ConsoleRunner.3.10.0\tools\nunit3-console.exe"
1010
1111if 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
1315)
1416
1517:main-menu
Original file line number Diff line number Diff line change 11#! /bin/sh
22
33cd " $( dirname " $0 " ) "
4+ SCRIPT_PATH=" $( pwd) "
45BUILD_TOOL_PATH=" ./Tools/BuildTool/bin/BuildTool.dll"
56BUILD_TOOL=" dotnet $BUILD_TOOL_PATH "
67AVAILABLE_CONFIGURATIONS=" available-test-configurations"
@@ -14,8 +15,10 @@ async_generator_path=""
1415
1516if [ ! -f $BUILD_TOOL_PATH ]
1617then
17- dotnet build ./Tools/BuildTool/BuildTool.sln -c Release -o bin
18+ cd ./Tools/BuildTool
19+ dotnet build BuildTool.sln -c Release -o bin
1820fi
21+ cd " $SCRIPT_PATH "
1922
2023buildDebug (){
2124 dotnet build ./src/NHibernate.sln
You can’t perform that action at this time.
0 commit comments