diff --git a/.gitignore b/.gitignore index 0bdb4bb..9451532 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ DualScreenSetup.exe Superstar.mdf Superstar_log.ldf +.vs +build.bat +DualScreenKTVPlayStation.exe \ No newline at end of file diff --git a/DualScreenKTVPlayStation.exe b/DualScreenKTVPlayStation.exe deleted file mode 100644 index c11c85d..0000000 Binary files a/DualScreenKTVPlayStation.exe and /dev/null differ diff --git a/build.bat b/build.bat deleted file mode 100644 index 831aab1..0000000 --- a/build.bat +++ /dev/null @@ -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 \ No newline at end of file