Exclude nested QuickTransfer and external folders from build to fix duplicate definition errors

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-20 19:09:47 -05:00
parent 77006670ae
commit 0ccae50150
+6
View File
@@ -22,4 +22,10 @@
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('Windows')) and Exists('$(_DalamudDevHooksPath)Dalamud.dll') and !Exists('$(DalamudLibPath)Dalamud.dll')">
<DalamudLibPath>$(_DalamudDevHooksPath)</DalamudLibPath>
</PropertyGroup>
<!-- Exclude nested QuickTransfer folder (duplicates) and external (SimpleTweaks has different deps) -->
<ItemGroup>
<Compile Remove="QuickTransfer\**" />
<Compile Remove="external\**" />
</ItemGroup>
</Project>