在哪里可以看到Azure DevOps中创建的包上传到商店?

问题描述 投票:1回答:1

我想创建要加载到商店的包。

到目前为止,这是YAML

trigger:
- master

pool:
  vmImage: 'VS2017-Win2016'

variables:
  solution: '**/*.sln'
  buildPlatform: 'x64'
  buildConfiguration: 'Release'
  appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\'

steps:
- task: NuGetToolInstaller@0

- task: NuGetCommand@2
  inputs:
    restoreSolution: '**\*.sln'
    feedsToUse: config

    nugetConfigPath: 'MyApp.Win10/mynuget.config'


- task: VSBuild@1
  inputs:
    platform: 'x64'
    solution:  '**\*.sln'
    configuration: '$(buildConfiguration)'
    msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'

The docs在构建结果页面的Artifacts选项卡上提到了Artifacts explorer。但是我找不到它。

我还查看了项目中的Artifacts,但它们只包含了我放在那里的一些nuget包。

azure-devops windows-store
1个回答
1
投票

你没有看到这些文物,因为你没有qazxsw poi。

例如,添加此任务:

"Publish Build Artifacts" task
© www.soinside.com 2019 - 2024. All rights reserved.