quantum-space-buddies/QSBPatcher/QSBPatcher.csproj

14 lines
565 B
XML
Raw Normal View History

2022-01-16 20:08:59 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2022-01-18 09:16:24 +00:00
<OutputType>Exe</OutputType>
2022-01-16 20:08:59 +00:00
</PropertyGroup>
<ItemGroup>
<None Update="SteamAPI\steam_api64.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
2022-01-18 09:00:37 +00:00
<Exec Command="copy /y &quot;$(TargetPath)&quot; &quot;$(OwmlDir)\Mods\QSB\$(TargetName).dll&quot;&#xA;md &quot;$(OwmlDir)\Mods\QSB\SteamAPI&quot;&#xA;copy /y &quot;$(ProjectDir)\SteamAPI&quot; &quot;$(OwmlDir)\Mods\QSB\SteamAPI&quot;" />
2022-01-16 20:08:59 +00:00
</Target>
</Project>