How to use EnvDTE.Solution API to remove TFS control source bindings from solution file?
I know that I can open the file in notepad and delete the GlobalSection part, but I'm not sure that (or how) I can do this as part of the method below ...
public void Export(Solution solution, TemplateInput model)
{
if(model.RemoveSourceControlBindings)
{
}
}
I found MSDN less useful with this API.
source
share