Skip to content

Commit

Permalink
Merge pull request unoplatform#86 from unoplatform/pj/fix-first-build
Browse files Browse the repository at this point in the history
Fix assets not being copied/generated at first build
  • Loading branch information
jeromelaban authored Mar 15, 2023
2 parents dd8a6a7 + aa1ad5b commit 8e7fa13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/.nuspec/Uno.Resizetizer.targets
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@
</Target>

<Target Name="ProcessUnoSplashScreens"
Condition="'@(UnoSplashScreen)' != ''"
Condition="'@(UnoSplashScreen)' != '' And '$(DesignTimeBuild)' != 'true'"
Inputs="$(MSBuildThisFileFullPath);$(_ResizetizerTaskAssemblyName);$(_UnoSplashInputsFile);@(UnoSplashScreen)"
Outputs="$(_UnoSplashStampFile)">

Expand Down Expand Up @@ -501,6 +501,7 @@
Inputs="$(MSBuildThisFileFullPath);$(_ResizetizerTaskAssemblyName);$(_ResizetizerInputsFile);@(UnoImage)"
Outputs="$(_ResizetizerStampFile)"
AfterTargets="$(ResizetizeAfterTargets)"
Condition="'$(DesignTimeBuild)' != 'true'"
BeforeTargets="$(ResizetizeBeforeTargets)"
DependsOnTargets="$(ResizetizeDependsOnTargets)">

Expand Down

0 comments on commit 8e7fa13

Please sign in to comment.