Skip to content

Commit 4af9bc0

Browse files
committed
don't rebuild Dalamud.Boot every time, copy out of output directory instead
1 parent 55bfe9e commit 4af9bc0

File tree

2 files changed

+7
-28
lines changed

2 files changed

+7
-28
lines changed

Dalamud.Boot/Dalamud.Boot.vcxproj

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<PlatformToolset>v143</PlatformToolset>
2929
<LinkIncremental>false</LinkIncremental>
3030
<CharacterSet>Unicode</CharacterSet>
31-
<OutDir>..\bin\$(Configuration)\</OutDir>
31+
<OutDir>bin\$(Configuration)\</OutDir>
3232
<IntDir>obj\$(Configuration)\</IntDir>
3333
</PropertyGroup>
3434
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
@@ -200,8 +200,10 @@
200200
<ItemGroup>
201201
<Manifest Include="themes.manifest" />
202202
</ItemGroup>
203-
<Target Name="RemoveExtraFiles" AfterTargets="PostBuildEvent">
204-
<Delete Files="$(OutDir)$(TargetName).lib" />
205-
<Delete Files="$(OutDir)$(TargetName).exp" />
203+
<Target Name="CopyOutputDlls" AfterTargets="PostBuildEvent">
204+
<Copy SourceFiles="$(OutDir)$(TargetName).dll" DestinationFolder="..\bin\$(Configuration)\" />
205+
<Copy SourceFiles="$(OutDir)$(TargetName).pdb" DestinationFolder="..\bin\$(Configuration)\" />
206+
207+
<Copy SourceFiles="$(OutDir)nethost.dll" DestinationFolder="..\bin\$(Configuration)\" />
206208
</Target>
207-
</Project>
209+
</Project>

Dalamud/Interface/Internal/Asserts/RenderScopes.cs

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)