- Added Copy-On-Build for publicized assemblies to the luatrauma localmods folder.

This commit is contained in:
MapleWheels
2026-02-09 18:37:27 -05:00
parent a61e705dbf
commit f1bae4c1ca
7 changed files with 19 additions and 2 deletions
@@ -0,0 +1,11 @@
<Project>
<Target Name="CopyPlublicizedFiles" AfterTargets="Build">
<ItemGroup>
<PublicizedAssemblies Include="$(TargetDir)\Publicized\**\*.dll"/>
</ItemGroup>
<Copy
SourceFiles="@(PublicizedAssemblies)"
DestinationFolder="$(TargetDir)\LocalMods\LuaCsForBarotrauma\Publicized\%(RecursiveDir)"
/>
</Target>
</Project>