Hello Friends
Microsoft Visual Studio 2005/2008 offered very nice solution for every part/object of SharePoint with its solution generator file(.wsp file). But we do not have solution generator for Workflow. If we wish then we have to write it manually.
But no need to sad about that we have one tool is available for “Sharepoint Workflow Generator”.
Go to this Link You can find that thing there.
http://blogs.msdn.com/nikhil/archive/2008/03/03/vsto-power-tool-sharepoint-workflow-package-generator.aspx
All related instructions are available there.
For that you have to make changes at some places like.
You can add this to the end of your csproj/vbproj file to get a wsp file after every build:
<Target>
<Exec Command=”"c:\Program Files\Microsoft VSTO Power Tools 1.0\workflowpackagegen.exe" /featureManifest:feature.xml” ContinueOnError=”true”>
</Exec>
</Target>
And when you run and deploy your workflow you will find out its .wsp file in your workflow folder
You can use that solution package file and you can add and deploy solution. So there is no need to manually thing for solution package.
It is very good blessings for SharePoint Developers!!!
Enjoy this utility.