StorageClient does not exist in the namespace using Microsoft.WindowsAzure The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceHow do I install a NuGet package .nupkg file locally?Best way to upload a blob with a huge size in GBs to azure in the fastest timeAzure asp.net mvc 3 publishing/deployment issueWhere is the NuGet package for Microsoft.WindowsAzure.ServiceRuntime?What would cause a 'could not load file or assembly' error concerning 'Microsoft.WindowsAzure.Configuration'?How do I deploy multiple Java projects to the same Azure cloud service and storage account?ServiceManagement API to Delete DeploymentAzure Cloud Services - Publish incremental changes onlyCould not load file or assembly Microsoft.Data.OData Version=5.2.0.0 error in Azure Cloud Worker Role using Table StorageMissing Microsoft.Data.Services.Client version 5.6 on Azure WebsitesCan't add Azure CloudService Project to existing solution

Still taught to reverse oxidation half cells in electrochemistry?

What aspect of planet Earth must be changed to prevent the industrial revolution?

When did F become S? Why?

What do you call a plan that's an alternative plan in case your initial plan fails?

Hopping to infinity along a string of digits

What information about me do stores get via my credit card?

How is simplicity better than precision and clarity in prose?

"... to apply for a visa" or "... and applied for a visa"?

Semisimplicity of the category of coherent sheaves?

Do warforged have souls?

Arduino Pro Micro - switch off LEDs

Create an outline of font

Sort list of array linked objects by keys and values

system call string length limit

How are presidential pardons supposed to be used?

Empty set is subset of every set? If yes, why that...

What are these Gizmos at Izaña Atmospheric Research Center in Spain?

Converting from Markdown-with-biblatex-commands to LaTeX

Can a novice safely splice in wire to lengthen 5V charging cable?

Does Parliament hold absolute power in the UK?

How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time

Finding the path in a graph from A to B then back to A with a minimum of shared edges

Working through the single responsibility principle (SRP) in Python when calls are expensive

Why did all the guest students take carriages to the Yule Ball?



StorageClient does not exist in the namespace using Microsoft.WindowsAzure



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceHow do I install a NuGet package .nupkg file locally?Best way to upload a blob with a huge size in GBs to azure in the fastest timeAzure asp.net mvc 3 publishing/deployment issueWhere is the NuGet package for Microsoft.WindowsAzure.ServiceRuntime?What would cause a 'could not load file or assembly' error concerning 'Microsoft.WindowsAzure.Configuration'?How do I deploy multiple Java projects to the same Azure cloud service and storage account?ServiceManagement API to Delete DeploymentAzure Cloud Services - Publish incremental changes onlyCould not load file or assembly Microsoft.Data.OData Version=5.2.0.0 error in Azure Cloud Worker Role using Table StorageMissing Microsoft.Data.Services.Client version 5.6 on Azure WebsitesCan't add Azure CloudService Project to existing solution



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








2















This code was working previously but on updating nuget packages something seems to have gone awry. If I add in the Microsoft.WindowsAzure.StorageClient dll that had previously been deployed then it is not recognising the Cloud classes such as CloudBlobClient which I am using WindowsAzure.Storage nuget 4.2



I need this to be able to write to azure file services so cannot simply uncomment










share|improve this question






















  • Can you describe the exact problem you're facing? You mentioned that you want to write to Azure File Service but at the same time you mentioned about CloudBlobClient. For writing to File Service, you would use something like CloudFileClient

    – Gaurav Mantri
    Aug 5 '14 at 15:40











  • Yes I am using CloudFileClient I just named first class I saw on the page, I am trying a using Microsoft.WindowsAzure.StorageClient but it tells me that storageclient does not exist in the namespace Microsoft.WindowsAzure which had been previously been working before nugets got changed for upgrade to MVC5

    – Jay
    Aug 5 '14 at 15:44











  • Microsoft.WindowsAzure.StorageClient is the old (and I mean really-really old) version. You should be using Microsoft.WindowsAzure.Storage. What was the version of the storage client library before you updated to 4.2?

    – Gaurav Mantri
    Aug 5 '14 at 15:57











  • Why wouldnt this be picked up?

    – Jay
    Aug 5 '14 at 15:57











  • Then it tells me that storage is not part of Microsoft.WindowsAzure.Storage namespace, I have the 4.1.0 dll in the project I am attempting to build

    – Jay
    Aug 5 '14 at 16:00

















2















This code was working previously but on updating nuget packages something seems to have gone awry. If I add in the Microsoft.WindowsAzure.StorageClient dll that had previously been deployed then it is not recognising the Cloud classes such as CloudBlobClient which I am using WindowsAzure.Storage nuget 4.2



I need this to be able to write to azure file services so cannot simply uncomment










share|improve this question






















  • Can you describe the exact problem you're facing? You mentioned that you want to write to Azure File Service but at the same time you mentioned about CloudBlobClient. For writing to File Service, you would use something like CloudFileClient

    – Gaurav Mantri
    Aug 5 '14 at 15:40











  • Yes I am using CloudFileClient I just named first class I saw on the page, I am trying a using Microsoft.WindowsAzure.StorageClient but it tells me that storageclient does not exist in the namespace Microsoft.WindowsAzure which had been previously been working before nugets got changed for upgrade to MVC5

    – Jay
    Aug 5 '14 at 15:44











  • Microsoft.WindowsAzure.StorageClient is the old (and I mean really-really old) version. You should be using Microsoft.WindowsAzure.Storage. What was the version of the storage client library before you updated to 4.2?

    – Gaurav Mantri
    Aug 5 '14 at 15:57











  • Why wouldnt this be picked up?

    – Jay
    Aug 5 '14 at 15:57











  • Then it tells me that storage is not part of Microsoft.WindowsAzure.Storage namespace, I have the 4.1.0 dll in the project I am attempting to build

    – Jay
    Aug 5 '14 at 16:00













2












2








2








This code was working previously but on updating nuget packages something seems to have gone awry. If I add in the Microsoft.WindowsAzure.StorageClient dll that had previously been deployed then it is not recognising the Cloud classes such as CloudBlobClient which I am using WindowsAzure.Storage nuget 4.2



I need this to be able to write to azure file services so cannot simply uncomment










share|improve this question














This code was working previously but on updating nuget packages something seems to have gone awry. If I add in the Microsoft.WindowsAzure.StorageClient dll that had previously been deployed then it is not recognising the Cloud classes such as CloudBlobClient which I am using WindowsAzure.Storage nuget 4.2



I need this to be able to write to azure file services so cannot simply uncomment







azure azure-storage






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Aug 5 '14 at 15:34









JayJay

1,55493679




1,55493679












  • Can you describe the exact problem you're facing? You mentioned that you want to write to Azure File Service but at the same time you mentioned about CloudBlobClient. For writing to File Service, you would use something like CloudFileClient

    – Gaurav Mantri
    Aug 5 '14 at 15:40











  • Yes I am using CloudFileClient I just named first class I saw on the page, I am trying a using Microsoft.WindowsAzure.StorageClient but it tells me that storageclient does not exist in the namespace Microsoft.WindowsAzure which had been previously been working before nugets got changed for upgrade to MVC5

    – Jay
    Aug 5 '14 at 15:44











  • Microsoft.WindowsAzure.StorageClient is the old (and I mean really-really old) version. You should be using Microsoft.WindowsAzure.Storage. What was the version of the storage client library before you updated to 4.2?

    – Gaurav Mantri
    Aug 5 '14 at 15:57











  • Why wouldnt this be picked up?

    – Jay
    Aug 5 '14 at 15:57











  • Then it tells me that storage is not part of Microsoft.WindowsAzure.Storage namespace, I have the 4.1.0 dll in the project I am attempting to build

    – Jay
    Aug 5 '14 at 16:00

















  • Can you describe the exact problem you're facing? You mentioned that you want to write to Azure File Service but at the same time you mentioned about CloudBlobClient. For writing to File Service, you would use something like CloudFileClient

    – Gaurav Mantri
    Aug 5 '14 at 15:40











  • Yes I am using CloudFileClient I just named first class I saw on the page, I am trying a using Microsoft.WindowsAzure.StorageClient but it tells me that storageclient does not exist in the namespace Microsoft.WindowsAzure which had been previously been working before nugets got changed for upgrade to MVC5

    – Jay
    Aug 5 '14 at 15:44











  • Microsoft.WindowsAzure.StorageClient is the old (and I mean really-really old) version. You should be using Microsoft.WindowsAzure.Storage. What was the version of the storage client library before you updated to 4.2?

    – Gaurav Mantri
    Aug 5 '14 at 15:57











  • Why wouldnt this be picked up?

    – Jay
    Aug 5 '14 at 15:57











  • Then it tells me that storage is not part of Microsoft.WindowsAzure.Storage namespace, I have the 4.1.0 dll in the project I am attempting to build

    – Jay
    Aug 5 '14 at 16:00
















Can you describe the exact problem you're facing? You mentioned that you want to write to Azure File Service but at the same time you mentioned about CloudBlobClient. For writing to File Service, you would use something like CloudFileClient

– Gaurav Mantri
Aug 5 '14 at 15:40





Can you describe the exact problem you're facing? You mentioned that you want to write to Azure File Service but at the same time you mentioned about CloudBlobClient. For writing to File Service, you would use something like CloudFileClient

– Gaurav Mantri
Aug 5 '14 at 15:40













Yes I am using CloudFileClient I just named first class I saw on the page, I am trying a using Microsoft.WindowsAzure.StorageClient but it tells me that storageclient does not exist in the namespace Microsoft.WindowsAzure which had been previously been working before nugets got changed for upgrade to MVC5

– Jay
Aug 5 '14 at 15:44





Yes I am using CloudFileClient I just named first class I saw on the page, I am trying a using Microsoft.WindowsAzure.StorageClient but it tells me that storageclient does not exist in the namespace Microsoft.WindowsAzure which had been previously been working before nugets got changed for upgrade to MVC5

– Jay
Aug 5 '14 at 15:44













Microsoft.WindowsAzure.StorageClient is the old (and I mean really-really old) version. You should be using Microsoft.WindowsAzure.Storage. What was the version of the storage client library before you updated to 4.2?

– Gaurav Mantri
Aug 5 '14 at 15:57





Microsoft.WindowsAzure.StorageClient is the old (and I mean really-really old) version. You should be using Microsoft.WindowsAzure.Storage. What was the version of the storage client library before you updated to 4.2?

– Gaurav Mantri
Aug 5 '14 at 15:57













Why wouldnt this be picked up?

– Jay
Aug 5 '14 at 15:57





Why wouldnt this be picked up?

– Jay
Aug 5 '14 at 15:57













Then it tells me that storage is not part of Microsoft.WindowsAzure.Storage namespace, I have the 4.1.0 dll in the project I am attempting to build

– Jay
Aug 5 '14 at 16:00





Then it tells me that storage is not part of Microsoft.WindowsAzure.Storage namespace, I have the 4.1.0 dll in the project I am attempting to build

– Jay
Aug 5 '14 at 16:00












2 Answers
2






active

oldest

votes


















0














Microsoft.WindowsAzure.StorageClient namespace does not exist in the new Microsoft.WindowsAzure.Storage.dll. I would strongly recommend removing all references to Microsoft.WindowsAzure.StorageClient.dll and changing the code to use the new library.



If you still cannot see Microsoft.WindowsAzure.Storage after these steps, you can try uninstalling the NuGet package and reinstalling it.






share|improve this answer






























    0














    Although the Microsoft.WindowsAzure.StorageClient DLL is likely outdated, I succeeded to download it manually from https://nuget.org/packages/AzureSDK2.2DLLs/ and install it to Visual Studio 2013 Community (using the instructions from another answer).






    share|improve this answer























      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f25142806%2fstorageclient-does-not-exist-in-the-namespace-using-microsoft-windowsazure%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      Microsoft.WindowsAzure.StorageClient namespace does not exist in the new Microsoft.WindowsAzure.Storage.dll. I would strongly recommend removing all references to Microsoft.WindowsAzure.StorageClient.dll and changing the code to use the new library.



      If you still cannot see Microsoft.WindowsAzure.Storage after these steps, you can try uninstalling the NuGet package and reinstalling it.






      share|improve this answer



























        0














        Microsoft.WindowsAzure.StorageClient namespace does not exist in the new Microsoft.WindowsAzure.Storage.dll. I would strongly recommend removing all references to Microsoft.WindowsAzure.StorageClient.dll and changing the code to use the new library.



        If you still cannot see Microsoft.WindowsAzure.Storage after these steps, you can try uninstalling the NuGet package and reinstalling it.






        share|improve this answer

























          0












          0








          0







          Microsoft.WindowsAzure.StorageClient namespace does not exist in the new Microsoft.WindowsAzure.Storage.dll. I would strongly recommend removing all references to Microsoft.WindowsAzure.StorageClient.dll and changing the code to use the new library.



          If you still cannot see Microsoft.WindowsAzure.Storage after these steps, you can try uninstalling the NuGet package and reinstalling it.






          share|improve this answer













          Microsoft.WindowsAzure.StorageClient namespace does not exist in the new Microsoft.WindowsAzure.Storage.dll. I would strongly recommend removing all references to Microsoft.WindowsAzure.StorageClient.dll and changing the code to use the new library.



          If you still cannot see Microsoft.WindowsAzure.Storage after these steps, you can try uninstalling the NuGet package and reinstalling it.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 7 '14 at 19:57









          Serdar OzlerSerdar Ozler

          3,2941121




          3,2941121























              0














              Although the Microsoft.WindowsAzure.StorageClient DLL is likely outdated, I succeeded to download it manually from https://nuget.org/packages/AzureSDK2.2DLLs/ and install it to Visual Studio 2013 Community (using the instructions from another answer).






              share|improve this answer



























                0














                Although the Microsoft.WindowsAzure.StorageClient DLL is likely outdated, I succeeded to download it manually from https://nuget.org/packages/AzureSDK2.2DLLs/ and install it to Visual Studio 2013 Community (using the instructions from another answer).






                share|improve this answer

























                  0












                  0








                  0







                  Although the Microsoft.WindowsAzure.StorageClient DLL is likely outdated, I succeeded to download it manually from https://nuget.org/packages/AzureSDK2.2DLLs/ and install it to Visual Studio 2013 Community (using the instructions from another answer).






                  share|improve this answer













                  Although the Microsoft.WindowsAzure.StorageClient DLL is likely outdated, I succeeded to download it manually from https://nuget.org/packages/AzureSDK2.2DLLs/ and install it to Visual Studio 2013 Community (using the instructions from another answer).







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 8 at 13:22









                  MelebiusMelebius

                  3,11032235




                  3,11032235



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f25142806%2fstorageclient-does-not-exist-in-the-namespace-using-microsoft-windowsazure%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

                      Алба-Юлія

                      Захаров Федір Захарович