「AppxManifest.xml」です。
----
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp build" xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build">
<!--
このパッケージ マニフェスト ファイルは、ビルド処理で生成されたものです。
このファイルに対する変更は、ファイルを再生成すると失われます。このファイルのエラーを修正するには、ソースの .appxmanifest ファイルを編集してください。
パッケージ マニフェスト ファイルの詳細については、http://go.microsoft.com/fwlink/?LinkID=241727 を参照してください
-->
<Identity Name="42ccc906-413b-4071-bae5-53b822cdd544" Publisher="CN=PublisherName" Version="1.0.0.0" ProcessorArchitecture="x86" />
<mp:PhoneIdentity PhoneProductId="42ccc906-413b-4071-bae5-53b822cdd544" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>AppProjectName</DisplayName>
<PublisherDisplayName>PublisherName</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
<PackageDependency Name="Microsoft.NET.CoreRuntime.2.2" MinVersion="2.2.27404.2" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
<PackageDependency Name="Microsoft.NET.CoreFramework.Debug.2.2" MinVersion="2.2.27505.2" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
</Dependencies>
<Resources>
<Resource Language="JA-JP" />
</Resources>
<Applications>
<Application Id="App" Executable="AppProjectName.exe" EntryPoint="AppProjectName.App">
<uap:VisualElements DisplayName="AppProjectName" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="AppProjectName" BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" />
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
</Capabilities>
<Extensions>
<Extension Category="windows.activatableClass.inProcessServer">
<InProcessServer>
<Path>CLRHost.dll</Path>
<ActivatableClass ActivatableClassId="Microsoft.UI.Xaml.Markup.ReflectionXamlMetadataProvider" ThreadingModel="both" />
</InProcessServer>
</Extension>
</Extensions>
<build:Metadata>
<build:Item Name="TargetFrameworkMoniker" Value=".NETCore,Version=v5.0" />
<build:Item Name="VisualStudio" Version="15.0" />
<build:Item Name="VisualStudioEdition" Value="Microsoft Visual Studio Community 2017" />
<build:Item Name="OperatingSystem" Version="10.0.19041.1288 (WinBuild.160101.0800)" />
<build:Item Name="Microsoft.Build.AppxPackage.dll" Version="15.0.28307.1089" />
<build:Item Name="ProjectGUID" Value="{BE6E154D-4A98-45CC-B58E-4A5EC578251F}" />
<build:Item Name="OptimizingToolset" Value="None" />
<build:Item Name="TargetRuntime" Value="Managed" />
<build:Item Name="Microsoft.Windows.UI.Xaml.Build.Tasks.dll" Version="10.0.19041.685" />
<build:Item Name="MakePri.exe" Version="10.0.19041.685 (WinBuild.160101.0800)" />
</build:Metadata>
</Package>
----
お礼
dell_OKさん、長い間 素晴らしい回答をありがとうございました。 質問を変えて、新規投稿します。 良ければ、そちらもご覧いただけましたら幸いです。 本当にありがとうございました。
補足
ご丁寧な説明、ありがとうございます。 残念?ながら、薄くなってなく、濃いままです。 プロジェクトに正式に追加させましたので。 もしかしたら、実行ファイル名が良いかもと思い、 ★.exe.appxmanifest のファイル名にもしましたが、ダメでした。 「UTF-8 with BOM」ですが、「UTF-8N」で保存させました。 今回の件に直接関係ないのですが、私の環境に アプリケーションマニフェストデザイナー が存在しません。 これは どうすれば存在させることができるか、分かりますでしょうか?