I lost my code but I published the code a few days ago in visual studio. Is it possible to reverse the .manifest files and .deploy files back to c# code?
Edit: its a console application This is all i have: https://i.stack.imgur.com/Y1Qd5.jpg
I lost my code but I published the code a few days ago in visual studio. Is it possible to reverse the .manifest files and .deploy files back to c# code?
Edit: its a console application This is all i have: https://i.stack.imgur.com/Y1Qd5.jpg
see here
Reflector and its add-in FileDisassembler.
Reflector will allow to see the source code. FileDisassembler will allow you to convert it into a VS solution.
If you're not using any Source-Control-System your code is lost.
You can try to get back your code by decompiling your published version. Therfor you can use something like ILSpy.