Sharepoint solution deployment with Stsadm
07/03/2010 Leave a comment
All my posts are provided "AS IS" with no warranties, and confer no rights.
07/03/2010 Leave a comment
06/03/2010 Leave a comment
PowerCommands 1.1 is a set of useful extensions for the Visual Studio 2008 adding additional functionality to various areas of the IDE. The source code is included and requires the VS SDK for VS 2008 to allow modification of functionality or as a reference to create additional custom PowerCommand extensions
Its very useful tool for visual studio2008 specially some features that Open command prompt, Copy Reference, Email code snipet, Copy project as reference and many more.
Project Page:
http://code.msdn.microsoft.com/PowerCommands
Some tools make life easier use it. bye now…
05/03/2010 Leave a comment
In this article we will create an external tool for registering our dlls to GAC .
1) Click in your VS.IDE menu Tools -> External Tools…
2) Click to Add button
Title = Register GAC
Command = C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\gacutil.exe
Arguments = -i $(TargetPath)
3) Make checked “Use Output window” for results
4) Click OK .
Now you can use your new external tool in your IDE’s -> Tools Menu…
Some tools save time or not ? bye now…
03/03/2010 Leave a comment
Sharepoint Tips & Tricks: Sharepoint exit edit mode programmatically.
We can do it with redirect to same page.
“Microsoft.SharePoint.Utilities” Namespace has a static class named SPUtility.
Example:
SPUtility.Redirect(SPContext.Current.ListItem.File.ServerRelativeUrl , SPRedirectFlags.Default, this.Context);
Easy isn’t it…
03/03/2010 Leave a comment
See my post about:
See you next article…