In order to programmatically activate a feature, you need its Feature ID (some type of GUID) that is set in the .feature file. Is there a pretty way of retrieving this value programmatically, so that I can do something like:
string featureID = ""; // Get Feature ID here
web.Features.Add(new Guid(featureID));
without having to hard code it?
