Skip to content

Instantly share code, notes, and snippets.

@Balder1840
Created April 21, 2019 08:38
Show Gist options
  • Save Balder1840/182c66bfbe62db2ad86be640776a9370 to your computer and use it in GitHub Desktop.
Save Balder1840/182c66bfbe62db2ad86be640776a9370 to your computer and use it in GitHub Desktop.
CssRewriteUrlTransform for mvc bundle with virtual path when deployed in IIS
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Optimization;
namespace XXX.Web
{
public class CssRewriteUrlTransformFixed : IItemTransform
{
public string Process(string includedVirtualPath, string input)
{
return new CssRewriteUrlTransform().Process("~" + VirtualPathUtility.ToAbsolute(includedVirtualPath), input);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment