“The language-neutral solution package was not found”
We sometimes get this error when deploying SharePoint 2010 (beta 2) solutions from Visual Studio 2010:
Error occurred in deployment step ‘Retract Solution’: The language-neutral solution package was not found.
We don’t know why this happens, possibly some beta problem, but one solution is to call the Delete method on the solution directly, using PowerShell:
(get-spsolution mysolution.wsp).Delete()
You can also run get-spsolution without parameters to see which solutions are currently installed in the farm.
Advertisement

Hello
1) Go to the solution folder in your disk Clear your PKG, obj, and bin Folders
2) IISReset
Cheers
Mohamed Hachem
Mohamed Hachem
August 25, 2010 at 8:07 pm
Perfect solution…thanks a ton!
JB
September 6, 2010 at 1:03 pm
(get-spsolution mysolution.wsp).Delete() is Perfect.
Nipesh Shah
November 24, 2011 at 11:09 am