Reputation: 83
If I have just a wsp file of a Sharepoint 2010 webpart, is it possible getting its source code, in a way I can open it in Visual Studio 2010?
Upvotes: 0
Views: 3988
Reputation: 61
A .wsp is actually a .cab file. Inside the cab file you should find the .dll you want to decompile as well as any .ascx files. Using ILSpy you might be able to decompile the .dll file.
Upvotes: 1