没有图标的 UWP 控制台应用程序,只有执行别名
UWP console app with no icon, just execution alias
我有一个使用桌面桥移植到 UWP 的 Win32 应用程序。
该应用程序同时具有 GUI 和命令行界面(单独的可执行文件)。
我想要 GUI 界面的图标和执行别名,但只有命令行界面的执行别名。我不想用一个没人会用的图标污染“开始”菜单。
为此,我了解到清单需要包含两个 Application
elements, one for the GUI and one for the command-line interface, as one Application
can include only one AppExecutionAlias
。
另见 Create a Universal Windows Platform console app。
我的想法是这样的:
<Applications>
<!-- GUI -->
<Application Id="MyApp" Executable="MyApp.exe" EntryPoint="Windows.FullTrustApplication">
<!-- with icon -->
<uap:VisualElements DisplayName="MyApp" Description="MyApp" ...>
...
</uap:VisualElements>
<!-- and execution alias -->
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias"
Executable="MyApp.exe" EntryPoint="Windows.FullTrustApplication">
<uap5:AppExecutionAlias>
<uap5:ExecutionAlias Alias="MyApp.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
</Extensions>
</Application>
<!-- Command-line interface -->
<Application Id="MyApp-commandline" Executable="MyApp-commandline.exe"
EntryPoint="Windows.FullTrustApplication">
<!-- with execution alias only -->
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias"
Executable="MyApp-commandline.exe" EntryPoint="Windows.FullTrustApplication">
<uap5:AppExecutionAlias>
<uap5:ExecutionAlias Alias="MyApp-commandline.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
</Extensions>
</Application>
</Applications>
但我不知道如何(即使可能)让 Application
没有图标,因为 VisualElements
部分似乎是强制性的。所以上面的清单是无效的。其中有一些技巧可以将另一个执行别名(用于不同的二进制文件)添加到(第一个也是唯一的)Application
.
是的,VisualElements
部分是强制性的,因为文件警告说,我们应该遵循 .Manifest 文件要求的规则。但是如果你不想有一些图标,你可以尝试提供一个不引用真实图像资源的 URI。比如,
<uap:VisualElements
DisplayName="ConsoleUWP"
Square150x150Logo="Square150x150Logo.png"
Square44x44Logo="Image.png"
Description="ConsoleUWP"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Image.png"/>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
Square44x44Logo
、Square150x150Logo
和 Wide310x150Logo
没有为图像引用正确的 URI,但是 uap:SplashScreen
不能配置错误的 URI,如果你这样做,它会出错。
---更新---
我们可以使用 Applications
元素为包指定一个或多个应用程序,但每个应用程序都需要 UWP .manefest 文件中的 VisualElements
部分。因此,如果您添加另一个,您将需要根据需要添加 Visual Elements,您的想法无法实现。另请注意,虽然每个包可以包含一个或多个应用程序,但包含多个应用程序的包将无法通过商店认证过程,也就是说您无法发布到商店。
另一方面,您可以尝试创建一个包含 Win32 和通用 Windows 平台 (UWP) 进程的程序包,并通过 AppService API 在它们之间进行通信。它使用 FullTrustProcessLauncher 扩展名而不是另一个 .您可以尝试查看示例:
https://github.com/Microsoft/DesktopBridgeToUWP-Samples/tree/master/Samples/AppServiceBridgeSample
我有一个使用桌面桥移植到 UWP 的 Win32 应用程序。
该应用程序同时具有 GUI 和命令行界面(单独的可执行文件)。
我想要 GUI 界面的图标和执行别名,但只有命令行界面的执行别名。我不想用一个没人会用的图标污染“开始”菜单。
为此,我了解到清单需要包含两个 Application
elements, one for the GUI and one for the command-line interface, as one Application
can include only one AppExecutionAlias
。
另见 Create a Universal Windows Platform console app。
我的想法是这样的:
<Applications>
<!-- GUI -->
<Application Id="MyApp" Executable="MyApp.exe" EntryPoint="Windows.FullTrustApplication">
<!-- with icon -->
<uap:VisualElements DisplayName="MyApp" Description="MyApp" ...>
...
</uap:VisualElements>
<!-- and execution alias -->
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias"
Executable="MyApp.exe" EntryPoint="Windows.FullTrustApplication">
<uap5:AppExecutionAlias>
<uap5:ExecutionAlias Alias="MyApp.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
</Extensions>
</Application>
<!-- Command-line interface -->
<Application Id="MyApp-commandline" Executable="MyApp-commandline.exe"
EntryPoint="Windows.FullTrustApplication">
<!-- with execution alias only -->
<Extensions>
<uap5:Extension Category="windows.appExecutionAlias"
Executable="MyApp-commandline.exe" EntryPoint="Windows.FullTrustApplication">
<uap5:AppExecutionAlias>
<uap5:ExecutionAlias Alias="MyApp-commandline.exe" />
</uap5:AppExecutionAlias>
</uap5:Extension>
</Extensions>
</Application>
</Applications>
但我不知道如何(即使可能)让 Application
没有图标,因为 VisualElements
部分似乎是强制性的。所以上面的清单是无效的。其中有一些技巧可以将另一个执行别名(用于不同的二进制文件)添加到(第一个也是唯一的)Application
.
是的,VisualElements
部分是强制性的,因为文件警告说,我们应该遵循 .Manifest 文件要求的规则。但是如果你不想有一些图标,你可以尝试提供一个不引用真实图像资源的 URI。比如,
<uap:VisualElements
DisplayName="ConsoleUWP"
Square150x150Logo="Square150x150Logo.png"
Square44x44Logo="Image.png"
Description="ConsoleUWP"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Image.png"/>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
Square44x44Logo
、Square150x150Logo
和 Wide310x150Logo
没有为图像引用正确的 URI,但是 uap:SplashScreen
不能配置错误的 URI,如果你这样做,它会出错。
---更新---
我们可以使用 Applications
元素为包指定一个或多个应用程序,但每个应用程序都需要 UWP .manefest 文件中的 VisualElements
部分。因此,如果您添加另一个,您将需要根据需要添加 Visual Elements,您的想法无法实现。另请注意,虽然每个包可以包含一个或多个应用程序,但包含多个应用程序的包将无法通过商店认证过程,也就是说您无法发布到商店。
另一方面,您可以尝试创建一个包含 Win32 和通用 Windows 平台 (UWP) 进程的程序包,并通过 AppService API 在它们之间进行通信。它使用 FullTrustProcessLauncher 扩展名而不是另一个 .您可以尝试查看示例:
https://github.com/Microsoft/DesktopBridgeToUWP-Samples/tree/master/Samples/AppServiceBridgeSample