UWP:资产在调试期间可见但在商店发布时不可见

UWP: Assets being visible during debug but not in store release

在我的应用程序中,有一个带有应用程序图标的关于部分:

<Border Background="Gray" Margin="0,0,12,0" Width="136" Height="136">
    <Image Source="ms-appx:///Assets/StoreLogo.scale-400.png" Width="68"/>
</Border>

在调试期间它的行为符合预期:
debug with asset visible

但是上传到商店并用另一个客户端下载后,它看起来像这样:
result after store upload - asset not visible, just background

Visual Studio 中特定文件的构建设置应该是正确的,但您可以检查:
asset properties: Build Action = Content; Copy to Output Directory = Copy always

我怎样才能在商店发布中显示资产?

<Image Source="ms-appx:///Assets/StoreLogo.png" Width="68"/>

只使用正常的 StoreLogo 名称,没有比例扩展,比例扩展是为了商店找出适合不同屏幕尺寸的最佳图像。