If you receive the following error in Visual Studio while packaging WSP:
The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters
then simply move all your projects from
C:\Users\YOUR_USERNAME\Documents\Visual Studio 2010\Projects\
to root drive
C:\Projects
Visual studio does not allow absolute path that exceeds 260 characters. so use short filenames when you create any WSP package and create your project on root directory to avoid long absolute paths.
C:\Projects
Visual studio does not allow absolute path that exceeds 260 characters. so use short filenames when you create any WSP package and create your project on root directory to avoid long absolute paths.