Another episode of my series about automated build of SharePoint full trust solutions with tfs 2013 and visual studio 2013.
/automated-build-for-sharepoint-2014-10-29-02-22-54
If you followed my posts you must have noticed you dll’s were built but you didn’t have any wsp.
This is because by default msbuild doesn’t package your solutions. That’s pity isn’t it?
Here is some documentation telling us to add IsPackaging=true to the build definition as a parameter.
https://msdn.microsoft.com/en-us/ff622991.aspx
That gives us /p:VisualStudioVersion=12.0;IsPackaging=true
See you soon for other posts.