Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions samples/todoapp/TodoApp.Uno/TodoApp.Uno/TodoApp.Uno.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@
$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'browserwasm'
">true</SuppressTrimAnalysisWarnings>

<!--
MT7156: Uno.Resizetizer (unoresizetizer) rasterizes each SVG-sourced asset
(Assets/Icons/icon_foreground.svg, Assets/Images/back.svg, Assets/Splash/splash_screen.svg)
into both an unscaled base PNG and an explicit "scale-100" variant. On ios/maccatalyst these
collapse to the same BundleResource LogicalName (Apple bundling treats unscaled and "1x" as
identical), so one copy is silently dropped - benign, expected Resizetizer output on these
TFMs, not a duplicate-inclusion bug in this project's Assets/UnoIcon/UnoSplashScreen wiring.
See #541.
-->
<MSBuildWarningsAsMessages Condition="
$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios' OR
$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'
">$(MSBuildWarningsAsMessages);MT7156</MSBuildWarningsAsMessages>

</PropertyGroup>
<ItemGroup>
<None Remove="Assets\AddItem.png" />
Expand Down
Loading