ASP.NET捆绑/缩小和嵌入式资源

时间:2014-03-31 14:17:08

标签: c# asp.net-mvc bundling-and-minification virtualpathprovider

我尝试使用this blog中描述的技术将嵌入式dll资源添加到我的捆绑包中。

我在下面创建了自定义VirtualPathProvider

public class EmbeddedVirtualPathProvider : VirtualPathProvider {

    private Type _rootType;

    public EmbeddedVirtualPathProvider(Type rootType) {
        _rootType = rootType;
    }

    public override bool FileExists(string virtualPath) {
        if (IsEmbeddedPath(virtualPath))
            return true;
        else
            return Previous.FileExists(virtualPath);
    }

    public override CacheDependency GetCacheDependency(string virtualPath, IEnumerable virtualPathDependencies, DateTime utcStart) {
        if (IsEmbeddedPath(virtualPath)) {
            return null;
        }
        else {
            return Previous.GetCacheDependency(virtualPath, virtualPathDependencies, utcStart);
        }
    }

    public override VirtualDirectory GetDirectory(string virtualDir) {
        return Previous.GetDirectory(virtualDir);
    }

    public override bool DirectoryExists(string virtualDir) {
        return Previous.DirectoryExists(virtualDir);
    }

    public override VirtualFile GetFile(string virtualPath) {
        if (IsEmbeddedPath(virtualPath)) {
            string fileNameWithExtension = virtualPath.Substring(virtualPath.LastIndexOf("/") + 1);

            string nameSpace = _rootType.Namespace;
            string manifestResourceName = String.Format("{0}.{1}", nameSpace, fileNameWithExtension);
            var stream = _rootType.Assembly.GetManifestResourceStream(manifestResourceName);
            return new EmbeddedVirtualFile(virtualPath, stream);
        }
        else
            return Previous.GetFile(virtualPath);
    }

    private bool IsEmbeddedPath(string path) {
        return path.Contains("~/Embedded");
    }
}

public class EmbeddedVirtualFile : VirtualFile {
    private Stream _stream;
    public EmbeddedVirtualFile(string virtualPath, Stream stream)
        : base(virtualPath) {
        _stream = stream;
    }

    public override Stream Open() {
        return _stream;
    }
} 

然后我注册了这个并设置了捆绑包;

public static void RegisterBundles(BundleCollection bundles) {

    HostingEnvironment.RegisterVirtualPathProvider(new EmbeddedVirtualPathProvider(typeof(My.Custom.Type)));

    bundles.Add(new StyleBundle("~/Embedded/css").Include(
        "~/Embedded/files/styles/etc/styles.css")
    );
}

我还实现了自定义EmbeddedResourceHttpHandler,如文章中所述,该文章在将文件作为直接http请求请求时有效。

问题: 嵌入的文件未包含在捆绑包中,它们只是被忽略。调试FileExists 方法时多次调用,但从不 ~/Embedded/files/styles/etc/styles.css

我错过了什么?

次要问题

使用最新版本的Microsoft ASP.NET Web Optimization Framework时。 VirtualPathProvider按预期工作,但它会阻止IRouteHandler执行。如果将FileExists方法更改为返回false,则允许RouteHandler执行,但显然会破坏VirtualPathProvider

我假设它没有使用已配置的路由,因为当FileExists返回true时它正在查找物理文件?这是配置还是实施问题?

1 个答案:

答案 0 :(得分:12)

您需要告诉BundleTable使用您的VirtualPathProvider:

BundleTable.VirtualPathProvider = new EmbeddedVirtualPathProvider(typeof(My.Custom.Type));

此功能已添加到v1.1.0 of the Microsoft ASP.NET Web Optimization Framework

此外,您需要确保对CSS文件的请求通过将其添加到您的web.config中来通过ASP.NET管道。

  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true">

通过将RouteCollection.RouteExistingFiles设置为true

,可以解决次要问题