[Update] Build scripts and configuration: Added new build and install scripts, updated versioning in config files, and improved project structure.

This commit is contained in:
misyaguziya
2025-11-25 12:20:55 +09:00
parent 54ec5ba45d
commit ff6ac43fee
15 changed files with 43 additions and 41 deletions

12
utils/task_kill.py Normal file
View File

@@ -0,0 +1,12 @@
import subprocess
# VRCT-sidecar.exe を強制終了
try:
subprocess.run(
["taskkill", "/IM", "VRCT-sidecar.exe", "/F"],
check=False,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL
)
except Exception:
pass