-2

Ok.

I have deleted my ASP.NET project on accident, however, I have it already deployed on MS Azure. I can see all the files in my Server Explorer and the website works perfectly. However I would like to continue working on it.

Is there any possibility to recover / completely download my web app?

enter image description here

If anyone could tell me how to download my website and maybe link me an example, thank you.

  • You accidentally deleted it from source control as well? Anyway, only the compiled binaries will be there probably. So no source code unless you try to decompile it. – Peter Bons Sep 11 '17 at 16:58

1 Answers1

1

You can set up FTP access to your Azure application (Connecting to Azure website via FTP) and then download from there. The code behind will all be compiled though so you'll have to use something to decompile that (.NET Reflector will do the trick).

Tom John
  • 783
  • 5
  • 14
  • Yeah it worked out. Only thing I did differently: used dotpeek to decompile –  Sep 12 '17 at 07:54
  • Now you've dodged that bullet consider signing up for some source control if you are not already using it. GitHub (https://github.com/) or the hosted TFS (https://visualstudio.com) - pretty sure there are free options. – Tom John Sep 12 '17 at 11:20