Skip to content

Commit

Permalink
Fix wrong path to copy mods after build #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Meister1593 committed Oct 3, 2023
1 parent 23702f0 commit 97d6236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EyeTrackVRResonite/EyeTrackVRResonite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(CopyToMods)'=='true'">
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(ResonitePath)res_mods" />
<Message Text="Copied $(TargetFileName) to $(ResonitePath)res_mods" Importance="high" />
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(ResonitePath)rml_mods" />
<Message Text="Copied $(TargetFileName) to $(ResonitePath)rml_mods" Importance="high" />
</Target>
</Project>

0 comments on commit 97d6236

Please sign in to comment.