我目前正在 Azure DevOps 上为我的 .NET MAUI 应用程序实现持续集成。
对于 Windows,我想将 Windows 项目打包成一个 .MSIX 文件。
我尝试使用 Azure DevOps 的 MSIX Build and Package 扩展,但它与 MAUI 的 .csproj 文件不兼容。
当我从 Visual Studio 部署应用程序时,它会在 bin/Release/net6.0-windows 中创建一个 Appx 文件夹,其中包含资产、DLL 和 AppxManifest.xml。
通过使用 Windows SDK 中的 MakeAppx 和 Signtool,我可以从该文件夹成功创建一个 .MSIX。
但由于我需要在 Azure DevOps 上实现自动化,我需要能够自己创建这个 Appx 文件夹,仅使用命令行。
有谁知道,我该如何处理?