移除 檔案

This commit is contained in:
allen.yan 2025-03-18 12:27:11 +08:00
parent 37f166ac6a
commit 713a0227f9
3 changed files with 3 additions and 22 deletions

3
.gitignore vendored
View File

@ -1,3 +1,6 @@
DualScreenSetup.exe
Superstar.mdf
Superstar_log.ldf
.vs
build.bat
DualScreenKTVPlayStation.exe

Binary file not shown.

View File

@ -1,22 +0,0 @@
@echo off
setlocal enabledelayedexpansion
:: Initialize the references part of the command
set refs=
:: Read each line from the references file and append it to the refs variable
for /F "tokens=*" %%a in (references.txt) do (
set refs=!refs! /reference:%%a
)
:: Initialize the sources part of the command
set sources=
:: Recursively read each C# source file in the current directory and subdirectories
for /R %%f in (*.cs) do (
set sources=!sources! "%%f"
)
:: Now call the csc.exe compiler with the constructed command
csc.exe /out:C:\superstar\DualScreenKTVPlayStation.exe /win32icon:ksonglover.ico %refs% %sources%
endlocal