build.bat
来自「一个饭店管理系统」· Batch 代码 · 共 9 行
BAT
9 行
@ REM Set command switch for building debug or retail (default is to build debug)
@ REM Type "build.bat -r" to build for retail
@ SET DEBUGSAMPLE=/debug+
@ IF "%1"=="-r" SET DEBUGSAMPLE=/debug-
@ IF "%1"=="-R" SET DEBUGSAMPLE=/debug-
IF EXIST ..\..\BIN\HELLO.DLL ECHO Y | copy ..\..\bin\Hello.dll
vbc %DEBUGSAMPLE% /r:System.Runtime.Remoting.dll DirectHost.vb
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?