Exemplo 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)));
        }
Exemplo n.º 2
0
 public ActionResult GetXapVersion(string fileName)
 {
     return(this.Content(DeploymentServiceHelper.GetXapFileVersion(fileName)));
 }