mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-04-02 18:27:27 +08:00
18 lines
784 B
XML
18 lines
784 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>
|
|
|
|
<!-- No-op stubs so solution-wide -t:ZipMod / -t:CopyToParentPackage don't fail
|
|
with MSB4057 "target does not exist in this project". -->
|
|
<Target Name="ZipMod" />
|
|
<Target Name="CopyToParentPackage" />
|
|
</Project> |