Tangible Thoughts

SharePoint, MOSS? and all the other questions

  Home  |   Contact  |   Syndication    |   Login
  858 Posts | 6 Stories | 482 Comments | 2088 Trackbacks

News

Tag Cloud


Article Categories

Archives

Post Categories

Image Galleries

Linky Things

SharePoint Bloggers

SharePoint Related

What I am playing

What I am Reading

Ids

There are 1 entries for the tag Ids
In case some of you missed it, Andrew May has a good post on how to create content type ids for feature definitions. Now as you might gather, creating features requires a whole heap of GUIDs on your hand. So a tool that can do this static void Main(string [] args){ if (args.Length == 0) { // Show GUID Form} else { Guid g = Guid.NewGuid(); if (args[0].ToLower() == "d") { Clipboard.SetDataObject( g.ToString("D"), true); } if (args[0].ToLower() == "n") { Clipboard.SetDataObject( g.ToString("N"), true);...