show/hide this revision's text 2 added 1427 characters in body

Use STSDev to create the solution package. That should help with creating the WSP. The custom form, CQWP webpart and the .xls file should also be deployable within the project.

To deploy the xslt, your feature will have an

<ElementManifest Location="mywebpartManifest.xml">

This then points to a files such as

<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <Module Name="Yourfile.xslt" Url="Style Library" Path="" RootWebOnly="TRUE">
    <File Url="yourfile.xslt" Type="GhostableInLibrary" />
  </Module>
</Elements>

for the webpart:

<Module Name="myWebpart" List="113" Url="_catalogs/wp" RootWebOnly="FALSE">
   <File Url="myWebpart.webpart" Type="GhostableInLibrary" />
</Module>

Now that file will need to be contained in the solution manifest.xml. This is done automatically from the STSDev project.

e.g.

<Resources>
    <Resource Location="SimpleFeature\Feature.xml"/>

The actual schemas are:

Site

Solution

Feature

and a link to someone else with the issue

show/hide this revision's text 1

Use STSDev to create the solution package. That should help with creating the WSP. The custom form, CQWP webpart and the .xls file should also be deployable within the project.