I've attempted to refactor the starting example .NET MAUI Blazor Hybrid app into a Razor Class Library (the Data, Pages, wwwroot, and Shared folders) that the remainder of the .NET MAUI Blazor codebase references as a separate project. I've updated the MAUI usings in _Imports.Razor to reference the RCL. I'm getting compile errors however that the splash image for $placeholder$.png in Package.appxmanifest cannot be found.
I'm wondering what exactly this $placeholder$ in the appxmanifest is referring to? Is there any particular folder or location?
$placeholder$
tags in my app. – KeratogenousPackage.appxmanifest
file under folderWindows
. But I couldn't find the$placeholder$
. – KeratogenousFind all "$placeholder$", Match case, Match whole word, Include external items, Include miscellaneous files, Entire solution, "!*\bin\*;!*\obj\*;!*\.*" [redacted]\Platforms\Windows\Package.appxmanifest(14):<DisplayName>$placeholder$</DisplayName> [redacted]\Platforms\Windows\Package.appxmanifest(16):<Logo>$placeholder$.png</Logo> [redacted]\Platforms\Windows\Package.appxmanifest(31):DisplayName="$placeholder$" [redacted]\Platforms\Windows\Package.appxmanifest(32):Description="$placeholder$" ...
– Wrought