-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Update DataProtection.AzureStorage to use latest Azure SDK dependency (Microsoft.Azure.Storage.Blob) #9465
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
… (Microsoft.Azure.Storage.Blob)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well as long as it works :)
This comment was made automatically. If there is a problem contact ryanbrandenburg. I've triaged the above build. I've created/commented on the following issue(s) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
eng/ and .csproj changes look correct and changed files are compiling 😺
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks a'ight. Please remember to post an announcement after merging.
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(AspNetCoreMajorMinorVersion)' == '3.0'"> | ||
<!-- This dependency was replaced by Microsoft.Azure.Storage.Blob between 3.0 and 2.2. This suppression can be removed after 3.0 is complete. --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to file a bug to remember this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Opened #9473 and put it in the 3.1 milestone. It's not super urgent because I've written this code to only apply when building 3.0. But yes, can be deleted later when it effectively becomes dead code.
@jkotalik is this a known issue with VS2019 and ANCM installer code? My changes are unrelated to this and there have been two build failures on this PR due to this. cc @aspnet/build |
I think 01b0c88 could have broken this. I'll take a look now. |
@natemcmaster is going to revert the commit while I look into what is broken. |
Fix #8472. The Azure Storage SDK has gone through some major updates since our last update. Notably, the entire API has been moved into a namespace and the packages have new IDs. This updates the DataProtection.AzureStorage extension to use the new APIs. It is a breaking change because of the new namespaces and APIs.