Accessing Azure Blob Storage from WPF Dot Net 4.5

Bob Beasley 20 Reputation points
2024-01-12T14:06:27.1966667+00:00

I have a WPF App using .NetFramwork 4.5 (I'm locked in to this framework). What, non deprecated, Azure Nuget package should I use to send files to my Azure Storage Blob. Thanks!

Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
3,192 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Sumarigo-MSFT 47,466 Reputation points Microsoft Employee Moderator
    2024-01-17T06:34:40.8866667+00:00

    @Bob Beasley Welcome to Microsoft Q&A Forum, Thank you for posting your query here! The Azure.Storage.Blobs package, which is the recommended package for Azure Blob Storage, requires .NET Standard 2.0. Unfortunately, .NET Framework 4.5 does not support .NET Standard 2.0.  NuGet Gallery | Azure.Storage.Blobs 12.20.0-beta.1 User's image

    You could consider using the Microsoft.Azure.Storage.Blob package, but please note that Microsoft encourages upgrading to the Azure.Storage.Blobs package. The Microsoft.Azure.Storage.Blob package might work with .NET Framework 4.5.1, but it officially supports .NET Framework 4.5.2. NuGet Gallery | Microsoft.Azure.Storage.Blob 11.2.3 User's image

    If upgrading your .NET Framework version is not an option, you might need to use the deprecated WindowsAzure.Storage package. However, please be aware that this package has been deprecated and may not receive further updates or bug fixes. NuGet Gallery | WindowsAzure.Storage 9.3.3 User's image

    Please let us know if you have any further queries. I’m happy to assist you further.

    ---Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    1 person found this answer helpful.
    0 comments No comments

  2. Sedat SALMAN 14,180 Reputation points MVP
    2024-01-12T21:56:26.4733333+00:00

    the following nuget packages can work for you https://www.nuget.org/packages/Azure.Storage.Blobs

    it is compatible with .net 2.0 or higher cersion we also have https://www.nuget.org/packages/Microsoft.Azure.Storage.Blob/9.4.0-preview

    compatible with .net framework 4.5 but it is obsolute


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.