Skip to content

Commit

Permalink
Update NontanCLI.csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
evnx32 committed Apr 29, 2023
1 parent 0fef940 commit 17ed890
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions NontanCLI/NontanCLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
</ItemGroup>

<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="mkdir $(ProjectDir)$(OutDir)Plyr&#xD;&#xA;copy $(ProjectDir)Plyr\* $(ProjectDir)$(OutDir)Plyr\" />
</Target>
<PropertyGroup>
<PlyrDir>$(ProjectDir)$(OutDir)Plyr/</PlyrDir>
</PropertyGroup>
<Exec Command="mkdir -p $(PlyrDir)" />
<Exec Command="cp -R $(ProjectDir)Plyr/* $(PlyrDir)" />
</Target>

</Project>

0 comments on commit 17ed890

Please sign in to comment.