Skip to content

Commit 994b64b

Browse files
Initialization.
1 parent 61466c1 commit 994b64b

File tree

56 files changed

+59
-24
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+59
-24
lines changed
File renamed without changes.
File renamed without changes.

root/programs/C#/4_Build_AsyncProcessingService.bat renamed to root/programs/CS/4_Build_AsyncProcessingService.bat

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,11 @@ set CURRENT_DIR="%~dp0"
1616
call %CURRENT_DIR%z_Common.bat
1717

1818
rem --------------------------------------------------
19-
rem Make the Directory.
19+
rem Build the batch Infrastructure(AsyncProcessingService)
2020
rem --------------------------------------------------
21-
md "Frameworks\Infrastructure\Temp"
22-
md "Frameworks\Infrastructure\Build"
2321

24-
rem --------------------------------------------------
25-
rem Output xcopy after you build the batch Infrastructure(Business)
26-
rem --------------------------------------------------
27-
28-
..\nuget.exe restore "Frameworks\Infrastructure\Business.sln"
29-
%BUILDFILEPATH% %COMMANDLINE% "Frameworks\Infrastructure\Business.sln"
30-
31-
xcopy /E /Y "Frameworks\Infrastructure\Business\bin\%BUILD_CONFIG%" "Frameworks\Infrastructure\Temp\%BUILD_CONFIG%\"
32-
xcopy /E /Y "Frameworks\Infrastructure\Temp\%BUILD_CONFIG%" "Frameworks\Infrastructure\Build\"
22+
..\nuget.exe restore "Frameworks\Infrastructure\AsyncProcessingService.sln"
23+
%BUILDFILEPATH% %COMMANDLINE% "Frameworks\Infrastructure\AsyncProcessingService.sln"
3324

3425
pause
3526

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
setlocal
2+
3+
@rem --------------------------------------------------
4+
@rem Turn off the echo function.
5+
@rem --------------------------------------------------
6+
@echo off
7+
8+
@rem --------------------------------------------------
9+
@rem Get the path to the executable file.
10+
@rem --------------------------------------------------
11+
set CURRENT_DIR="%~dp0"
12+
13+
@rem --------------------------------------------------
14+
@rem Execution of the common processing.
15+
@rem --------------------------------------------------
16+
call %CURRENT_DIR%z_Common.bat
17+
18+
rem --------------------------------------------------
19+
rem Build the batch Infrastructure(Business)
20+
rem --------------------------------------------------
21+
22+
..\nuget.exe restore "Samples\AsyncSvc_sample\AsyncSvc_sample.sln"
23+
%BUILDFILEPATH% %COMMANDLINE% "Samples\AsyncSvc_sample\AsyncSvc_sample.sln"
24+
25+
pause
26+
27+
rem -------------------------------------------------------
28+
endlocal

0 commit comments

Comments
 (0)