Crom
Crom

Reputation: 83

Is it possible to get the source code of a Sharepoint 2010 webpart from just its wsp file?

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

Answers (1)

dinos.kon
dinos.kon

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

Related Questions