Skip to content

Commit

Permalink
Merge pull request #313 from ffxivcode/Fix_Copy
Browse files Browse the repository at this point in the history
Fix after build event copy path files
  • Loading branch information
Herculezz55 authored Aug 30, 2024
2 parents 7d97c2d + 81e02c4 commit 3b71c62
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions AutoDuty/AutoDuty.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,10 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy &quot;$(ProjectDir)Paths\*&quot; &quot;$(ProjectDir)$(OutDir)&quot;" />
<Target Name="AfterBuild">
<Copy SourceFiles="$(ProjectDir)Paths\*"
DestinationFolder="$(ProjectDir)$(OutDir)"
OverwriteReadOnlyFiles="true"
SkipUnchangedFiles="false" />
</Target>
</Project>

0 comments on commit 3b71c62

Please sign in to comment.