/// <summary>
 /// Create NC Task in solution
 /// </summary>
 /// <returns></returns>
 public void createNcTask()
 {
     try
     {
         NcConfig.CreateChild("NC-Task 1", 1);
     }
     catch
     {
         throw new ApplicationException("Unable to create NC Task");
     }
 }