Skip to content

Commit

Permalink
Mac: Fix .app bundle errors when using msbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
cwensley committed May 28, 2020
1 parent dac3dc8 commit 55e42ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Eto.Mac/build/BundleDotNetCore.targets
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<Target Name="MacBuildAppBundleWithoutRuntime" AfterTargets="AfterBuild" Condition="$(MacBundleDotNet) != 'True' AND $(MacIsBuildingBundle) == 'True'" DependsOnTargets="MacInitializeBundle;MacCollectExecutableFiles">

<!-- copy executable files -->
<Copy SourceFiles="@(MacExecutableFiles)" DestinationFiles="$(LauncherPath)%(MacExecutableFiles.TargetPath)" />
<Copy SourceFiles="@(MacExecutableFiles)" DestinationFiles="@(MacExecutableFiles->'$(LauncherPath)%(TargetPath)')" />

<!-- finish building the bundle -->
<CallTarget Targets="MacFinishBundle" />
Expand Down
2 changes: 1 addition & 1 deletion src/Eto.Mac/build/BundleMono.targets
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
</ItemGroup>

<!-- copy executable files -->
<Copy SourceFiles="@(MacExecutableFiles)" DestinationFiles="$(OutputMonoBundlePath)%(MacExecutableFiles.TargetPath)" />
<Copy SourceFiles="@(MacExecutableFiles)" DestinationFiles="@(MacExecutableFiles->'$(OutputMonoBundlePath)%(TargetPath)')" />
</Target>


Expand Down

0 comments on commit 55e42ce

Please sign in to comment.