Exemplo n.º 1
0
        public static string VersionedContent(this UrlHelper urlHelper, string contentPath)
        {
            var result = urlHelper.Content(contentPath);

            var tag = VersionService.GetVersionTag();

            return(result + (result.Contains("?") ? "&v=" : "?v=") + tag);
        }