Esempio n. 1
0
        public ActionResult GetXapVersions(string fileNames)
        {
            var j   = JArray.Parse(fileNames);
            var res = JsonConvert.DeserializeObject <string[]>(j.ToString());

            return(this.Json(DeploymentServiceHelper.GetXapFileVersion(res)));
        }
Esempio n. 2
0
 public ActionResult GetXapVersion(string fileName)
 {
     return(this.Content(DeploymentServiceHelper.GetXapFileVersion(fileName)));
 }