Create a Guid Tool For VS 2008 Tools…
This is a very useful topic
Create To the XSD design You Want and then use this tool to generate the code behind and classes very useful when trying to serialize objects to be passed in webservices.
Open your Visual Studio Select Tools > External Tools then Click ADD
Title : XSD generation
Command : system Drive:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\xsd.exe
Arguments : /nologo /c /n:CB.Booking.ServiceModel.$(ItemFileName) $(ItemPath)
Initial Directory : $(ItemDir)
Check Use Out Put window Option
This Trick Allan showed me…
You can add a menu tool to your visual studio to add/upgrade/delete your WSP solution If it located in the same folder for your VS Project
Open your Visual Studio Select Tools > External Tools then Click ADD
Tool 1 :"Add WSP" this tool Adds Your WSP solution to the Share Point Solutions List … How Ever It Adds it Without Deployment So you need to Open Administration site for share point and open Central Administration > Operations > Solution Management to deploy the project after using this tool
back to what we were saying
Too1:
Write the following
Title : Add WSP
Command : system Drive:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN\STSADM.EXE
Arguments : -o addsolution -filename $(TargetName).wsp
Initial Directory : $(ProjectDir)
Check Use Out Put window Option
Tool2: UpGrade WSP (Only Works When Your Solution is Deployed Already on share Point Used Up Grade the WSP Solution)
Title : UpGrade WSP
Command :system Drive:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN\STSADM.EXE
Arguments : -o upgradesolution -filename $(TargetName).wsp -name $(TargetName).wsp -immediate -allowgacdeployment
Initial Directory : $(ProjectDir)
Check Use Out Put window
Tool3:(Removes the WSP Solution From the share point Solutions how ever the solution must be retracted before using this tool, to retract your solution open Administration site for share point and open Central Administration > Operations > Solution Management )
Title : Remove WSP
Command : system Drive:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN\STSADM.EXE
Arguments : -o deletesolution -name $(TargetName).wsp
Initial Directory : $(ProjectDir)
Check Use Out Put window
To Make any of These Tools Work You must First Select the Project in the Solution Explorer window In the VS before selecting the tool from the tools menu … Also the WSP solution must be in your project Directory.
To Generate the WSP solution from Your VS you can see the tool I mentioned in my Previous Post
I made tool for the WSPBuilder From my Previous Post to generate the Wsp in the project folder
Tool4:(generate Wsp file from VS project in the project`s folder)
Title : WSP Build
Command : WSPBuilder Tool Path\WSPBuilder.exe
Arguments :
Initial Directory : $(ProjectDir)
Check Use Out Put window
So you can develop your project use tool4 to generate the wsp solution use too1 to add it to the share point solutions ,deploy it from the administration site and if you made some modifications to the project you simply rebuild it and then use tool 4 and finally use tool 2.
There is a Tool That Automatically creates SharePoint Solutions files based on a folder structure. WSPBuilder will automatically traverse a "12" folder structure
and creates a SharePoint solution manifest.xml and the wsp file based on the files it finds.
Lets say that you have created a SharePoint feature and you want to create a SharePoint Solution
for this feature. Then you just need to create the following folder structure in you project directory:
"[MyProject]\12\Template\Features\MyCustomFeature\"
and put your feature files in the MyCustomFeature folder, that being your feature. Then run the WSPBuilder from the your project directory and it will automatically create the manifest.xml and pack it into a wsp file with the content of the "\12" folder.
To get the latest version of WSPBuilder Visit All Releases
For more Information About WSPBuilder and how to use it Visit the Orgional Topic
More Over you don’t have to paste the WSPBuilder.exe in your project directory … you can read my previous post and you will know the way to do that
My Previous Post
If you want to See some of .Net dlls Implementation there is an Cool tool that shows you all the .Net Class code and Provide you with some extra details like the dlss version,Culture and the token key
More over you can browse to any local dll the reflector will do the rest of the work
this Program name is Reflector.exe
(Available for free via – this link)
Today i was pleased by getting my Scrum Master Certificate , I can’t wait to actually start using it in real life I think it is a great way of managing and developing software, it just feels right Here is the description and the rules to get certified here and here Basically it is taking [...]