Reputation: 3965
I dropped my hard drive which contained all my code and now it won't plug in to my computer. I need the code to my Azure website which I deployed earlier asap. Is there a way for me to access this code?
Upvotes: 1
Views: 1200
Reputation: 1369
Bringing this answer up to date, you can also clone the instance of your application to a local git repository by doing the following:
Upvotes: 0
Reputation: 24636
It's not going to be pretty but once you get your binaries via FTP you can use a Reflector library to decompile your binaries and generate source code from them.
It won't be as good as the original source code, but it'll be functionally equivalent and will make it easier for you get back to where you were.
Upvotes: 0
Reputation: 1805
Yes, there are multiple ways.
Upvotes: 2