public ActionResult ConfigureSolutionSection(string id, Solution config)
 {
     return Post<VisualStudioConfiguration>(id, c => c.Solution = config);
 }
 public VisualStudioConfiguration()
 {
     Github = new Github();
     Solution = new Solution();
     Iis = new Iis();
 }