1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2026-03-29 13:07:17 +08:00

build: add UpdateGameDlls helper project for parallel-safe DLL update

This commit is contained in:
2026-03-22 15:37:19 +08:00
parent d7f8dc55d4
commit a894c34987
5 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.Build.NoTargets/3.7.56">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
</PropertyGroup>
<Target Name="UpdateGameDlls" BeforeTargets="BeforeBuild">
<Exec
Command="powershell.exe -NoProfile -ExecutionPolicy Bypass -File &quot;$(MSBuildThisFileDirectory)..\UpdateGameDlls.ps1&quot; -ProjectRoot &quot;$(MSBuildThisFileDirectory)..&quot;"
ConsoleToMSBuild="true"
IgnoreExitCode="false"
WorkingDirectory="$(MSBuildThisFileDirectory).." />
</Target>
</Project>