Doug Wilson

Results 16 comments of Doug Wilson

I hate to simply say "Me too" but I have exactly the same problem.

I've been looking into this. and isn't anything to do with postal. The fact is that RazorEngine (upon which postal relies) has no notion of the HtmlHelper which all the...

In addition to this, it would be great if the toast would immediately fade out upon mouse out.

We need this as well. Carving jobs often take a long time to run and in our shop interruptions are fairly frequent. Sometimes we can just leave the job running...

So I've been fighting with this for awhile. Turns out there are a couple things going on: * None of the Processors override `CacheKey` which means that when I switched...

Instead of using [AddJavaScriptBundle(...)](https://github.com/ligershark/WebOptimizer/blob/8f96409a3c9cc767cb626834eb0ab5b46824df38/src/WebOptimizer.Core/Processors/JavaScriptMinifier.cs#L98) use a custom pipeline: ```csharp pipeline.AddBundle("/js/bundle.js", "text/javascript; charset=UTF-8", "/js/a.js", "/js/b.js") .Concatenate(); // This is what makes the bundle ```

@cramhead, there is a memory cache, but it's not an option (yet). See [here](https://github.com/ligershark/WebOptimizer/blob/8f96409a3c9cc767cb626834eb0ab5b46824df38/src/WebOptimizer.Core/AssetBuilder.cs#L41).

@madskristensen PR #80 closes this. @cramhead Memory caching and Disk caching can now be enabled/disabled separately.

That looks reasonable. Send a pull request and it will probably get accepted sooner. I’m running off a fork because I think this project is abandoned/dead.

I understand that. In my app ASP.NET is only a small component. It's essentially only providing a Web UI/API to a long running daemon and database. The daemon relies heavily...