0

I have a Service Fabric application that downloads the image from Azure ACR repostiry. The authentication of the ACR repo is from ApplicationManifest.xml

 <RepositoryCredentials AccountName="{AccountName}" Password="{Password}" PasswordEncrypted="false" />

Would like to know is there any possible way to use Azure DevOps ACR Service connection in "RepositoryCredentials ..."

As per Microsoft document we can use Accountname and Password (or) token registry credentials to download the ACR image

Rajakumar Babu
  • 117
  • 2
  • 9

1 Answers1

0

Azure DevOps Service connection is used in azure devops pipeline tasks. It is designed to allows you to connect to the external and remote services in azure devops pipeline.

I am afraid it cannot be used in RepositoryCredentials of Service Fabric's ApplicationManifest.xml.

See document for more information about azure devops service connection.

Levi Lu-MSFT
  • 27,483
  • 2
  • 31
  • 43