mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-03-26 18:37:22 +08:00
13 lines
569 B
XML
13 lines
569 B
XML
<?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 "$(MSBuildThisFileDirectory)..\UpdateGameDlls.ps1" -ProjectRoot "$(MSBuildThisFileDirectory)..""
|
|
ConsoleToMSBuild="true"
|
|
IgnoreExitCode="false"
|
|
WorkingDirectory="$(MSBuildThisFileDirectory).." />
|
|
</Target>
|
|
</Project> |