Forum Discussion
Man Lam Cheng
Oct 02, 2025Copper Contributor
SSMS 21/22 Error Upload BACPAC file to Azure Storage
Hello All In my SSMS 20, I can use "Export Data-tier Application" to export an BACPAC file of Azure SQL database and upload to Azure storage in the same machine, the SSMS 21 gives error message whe...
AndyPT
Oct 03, 2025MCT
This seems like a bug. Here are some workarounds.
If the issue is getting that package, you can try:
dotnet add package System.IO.Hashing --version 6.0.0
If you don’t need features from Azure.Storage.Blobs ≥12.17.0, you can downgrade to 12.12.0, which doesn’t depend on System.IO.Hashing:
dotnet add package Azure.Storage.Blobs --version 12.12.0
No guarantees about version numbers, but if you have a clean machine to try, experiment with different values.
Hope this helps.