Packing multiple functions into a single WSP solution file

I am working on a sharepoint function that includes a pair of list definitions, 2 web pages, a function receiver assembly, and an InfoPath form.

I need to use WSPBuilder to package them, and I need to pack all these functions into a single WSP solution file.

The WSP developer now requires that the deployment files in a specific folder structure be the same as the 12 Hive sharepoint.

My problem is that all my functions were developed separately and consist of several project files, and they are not necessarily in the same folder structure.

How to use WSP Builder to pack multiple functions into one WSP solution?

+3
source share
5 answers

Perhaps this will help: http://www.codeplex.com/wspbuilder/Thread/View.aspx?ThreadId=43125

Ultimately, I think you get more flexibility by creating your own wsp files with a tool like NANT.

+6
source

There are no special actions that wspbuilder needs to take to have multiple functions in one solution package. All you have to do is create a new folder for each function in the 12 \ TEMPLATE \ FEATURES folder inside your solution in Visual Studio and put the corresponding feature.xml file in this folder. For example, you might have:

12 \ TEMPLATE \ FEATURES \ FancyFeature \ feature.xml 12 \ TEMPLATE \ FEATURES \ ReallyCoolFeature \ feature.xml

... etc.

wspbuilder 12- wsp manifest.xml. "TEMPLATE", IMAGES, LAYOUTS ..: , 12 .

12 visual studio, manifest.xml.

+5

, - . "12", .

. , 1 .

0

dll wsp, : DLL WSP-

0

, "". , "" . , wsp, "Post Build Events" xcopy 12- DLL, , . , , wsp , .

0

Source: https://habr.com/ru/post/1703552/


All Articles