Exclude the base dll from being copied out of root

This commit is contained in:
Chomp
2025-10-05 14:02:29 +01:00
parent f6fb975f45
commit 8e476d6992
+1 -1
View File
@@ -55,7 +55,7 @@
<Target Name="MoveDllsToLibsFolder" AfterTargets="Publish">
<ItemGroup>
<PublishedDlls Include="$(PublishDir)*.dll" />
<PublishedDlls Include="$(PublishDir)*.dll" Exclude="$(PublishDir)$(AssemblyName).dll" />
</ItemGroup>
<MakeDir Directories="$(PublishDir)SPT_Data\libs" />