chore: update Ares container tag and adjust build commands

Update the remote image tag for Ares from multiarch-fixed-v2 to multiarch-fixed-v3 in the global configuration. Additionally, modify the dotnet build commands in the builder to target the specific WindowsService1.csproj file instead of the broader Ares.sln solution file for more precise and efficient compilation.
This commit is contained in:
Aryma
2026-04-15 03:20:05 +07:00
parent 3ba28c3197
commit 286accf271
2 changed files with 4 additions and 4 deletions

View File

@@ -765,9 +765,9 @@ NOTE: v2.3.2+ uses a different BOF loader than v2.3.1 and they are not compatibl
)
shutil.move(shellcode_path, working_path)
if self.get_parameter('debug'):
command = f"dotnet build Ares.sln -c {compileType} -p:OutputType=WinExe -p:Platform=\"Any CPU\""
command = f"dotnet build WindowsService1/WindowsService1.csproj -c {compileType} -p:OutputType=WinExe -p:Platform=\"Any CPU\""
else:
command = f"dotnet build Ares.sln -c {compileType} -p:DebugType=None -p:DebugSymbols=false -p:DefineConstants=\"\" -p:OutputType=WinExe -p:Platform=\"Any CPU\""
command = f"dotnet build WindowsService1/WindowsService1.csproj -c {compileType} -p:DebugType=None -p:DebugSymbols=false -p:DefineConstants=\"\" -p:OutputType=WinExe -p:Platform=\"Any CPU\""
proc = await asyncio.create_subprocess_shell(
command,
stdout=asyncio.subprocess.PIPE,