public ActionResult ConfigureGithubSection(string id, Github config)
 {
     return Post<VisualStudioConfiguration>(id, c => c.Github = config);
 }
 public VisualStudioConfiguration()
 {
     Github = new Github();
     Solution = new Solution();
     Iis = new Iis();
 }
Beispiel #3
0
 public ActionResult ConfigureGithibSection(string id, Github config)
 {
     return Post<BatchConfiguration>(id, c => c.Github = config);
 }
Beispiel #4
0
 public XCopyConfiguration()
 {
     Github = new Github();
     Iis = new Iis();
 }