Skip to content

Commit

Permalink
chore(driver): support .NET Framework using mono (#1040)
Browse files Browse the repository at this point in the history
  • Loading branch information
kblok committed Dec 8, 2020
1 parent 5b0ad49 commit c8425a9
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,10 @@
<Message Text="@(PlaywrightDriverFiles)" />
<Copy SourceFiles="@(PlaywrightDriverFiles)" DestinationFolder="$(AppBundleDir)/Contents/MonoBundle/" />
</Target>
<Target Name="ChmodOnLinuxExecutables" AfterTargets="CopyFilesToOutputDirectory" Condition="Exists('packages.config') OR Exists('$(MSBuildProjectName).packages.config') OR Exists('packages.$(MSBuildProjectName).config')">
<Message Text="chmod on Linux executables" />
<Exec Command="chmod u+x $(OutputPath)/runtimes/unix/native/ffmpeg-linux" />
<Exec Command="chmod u+x $(OutputPath)/runtimes/unix/native/ffmpeg.COPYING.GPLv3" />
<Exec Command="chmod u+x $(OutputPath)/runtimes/unix/native/playwright-cli" />
</Target>
</Project>

0 comments on commit c8425a9

Please sign in to comment.