XCode 15.2 - Is it possible to add a Swift Package over HTTPS from Azure Devops with a Personal Access Token?

I'm trying to add a Swift Package to my project, which is hosted on Azure Devops.

I only have HTTPS access to Azure Devops, but I am able to connect with it using Git on the CLI and use my PAT in the header, etc.

However, if I want to add this repo as a dependency for my project, XCode does not seem to support this. When adding the https-URL as a dependency, I get the option to authenticate using:

  • Username / Password
  • Github enterprise account
  • Gitlab self-hosted
  • Bitbucket Server

I've tried all of them of course, but none of them work, either by throwing "authentication failed" issues, etc.

Is it even possible to have (private) Swift Packages on an Azure Devops server and use those in XCode? Or am I forced to use local dependencies (I'd rather don't do that, because then I cannot fix them on a tag / branch / commit, etc.)?

Any feedback would be greatly appreciated