Skip to content

Commit

Permalink
Merge pull request #19594 from unoplatform/dev/jela/transitiveassets-102
Browse files Browse the repository at this point in the history
fix(wasm): Ensure proper dependents execution after 9.0.102
  • Loading branch information
jeromelaban authored Feb 28, 2025
2 parents cd835fb + 189da08 commit e1b72b6
Showing 1 changed file with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,12 +281,25 @@
</UnoGenerateAssetsManifestDependsOn>
</PropertyGroup>

<PropertyGroup>
<UnoGenerateAssetsManifestDependsOn>
$(UnoGenerateAssetsManifestDependsOn);
_UnoAssetsGetCopyToPublishDirectoryItems
</UnoGenerateAssetsManifestDependsOn>

<_UnoAssetsGetCopyToPublishDirectoryItemsDependsOn>
$(_UnoAssetsGetCopyToPublishDirectoryItemsDependsOn);
_UnoGetCopyToOutputItems;
GenerateUnoWasmAssets; <!-- Required for 9.0.102 and later to get WasmShellOutputPackagePath -->
</_UnoAssetsGetCopyToPublishDirectoryItemsDependsOn>
</PropertyGroup>

<!--
Ensure that project transitive references are copied to the publish directory, as well
as nuget packages content.
-->
<Target Name="_UnoAssetsGetCopyToPublishDirectoryItems"
DependsOnTargets="_UnoGetCopyToOutputItems"
DependsOnTargets="$(_UnoAssetsGetCopyToPublishDirectoryItemsDependsOn)"
Condition=" '$(UsingMicrosoftNETSdkWebAssembly)' == 'true' ">

<ItemGroup Condition=" @(UnoAllCopyToOutputItems->Count()) > 0">
Expand Down

0 comments on commit e1b72b6

Please sign in to comment.