将桌面应用程序和 UWP 应用程序打包在一起,我应该从 UWP 项目中删除 package.appxmanifest 文件吗?

Packaging Desktop App and UWP App together, should I remove the package.appxmanifest file from the UWP project?

我正在将一个 UWP 应用程序和一个常规桌面应用程序打包在一起。当我部署 Windows 应用程序打包项目时,它似乎同时安装了 UWP 应用程序和打包版本,所以我最终安装了两个版本的应用程序。那么从 UWP 项目中删除 package.appxmanifest 文件是否安全?

编辑:

因此无法删除 package.appxmanifest 文件。 但是,当我在打包项目上单击 Deploy 时,是否可以阻止我的 UWP 应用程序构建两次?

So is it safe to remove the package.appxmanifest file from the UWP project?

恐怕您无法从 UWP 项目中删除 package.appxmanifest 文件,它会在 uwp 端抛出异常。每个应用包必须包含一个包清单。

Project must have either AppxManifest item or Content item with name 'AppxManifest.xml'.    UWPCore     

更多细节请参考App package manifest文档。