Andrey Taritsyn

Results 151 comments of Andrey Taritsyn

@HGCollier It depends on the type of your application. For example, a web application will most likely need an external CustomFileManager.

> At the top of my .cs I have put the using `BundleTransformer.SassAndScss.Internal;` but because the `VirtualFileManager` is internal I cannot access it. `VirtualFileManager` class is just an example, so...

Then try to use the [Microsoft ASP.NET Web Optimization Framework](https://archive.codeplex.com/?p=aspnetoptimization) and [Bundle Transformer](https://github.com/Taritsyn/BundleTransformer) libraries. Start reading the following sections of documentation: [“Before you read”](https://github.com/Taritsyn/BundleTransformer/wiki/Before-you-read) and [“Examples of usage”](https://github.com/Taritsyn/BundleTransformer/wiki/Examples-of-usage). I also...

Not directly, because these libraries are responsible for asset management and bundling.

@HGCollier It is possible that an alternative solution is more suitable for you - [SharpScss](https://github.com/xoofx/SharpScss).

Hello, Pablo! > The ideal scenario would be to be able to pass the file manager in the parameter options of the compiler. I myself would be happy to implement...

Hello, Christopher! Originally this library was developed for use in the [Bundle Transformer](http://bundletransformer.codeplex.com/) project, therefore as there is no documentation. I recommend to you watch the code of unit tests....

Hello, AllNamesRTaken! You are right, passing of objects from .NET does not work. In documentation lists 5 supported types. Implementation of such functionality is not a trivial task. When I...

@kunalspathak , this refers to the functionality of similar functionality from the [ClearScript](http://clearscript.codeplex.com/): ``` csharp using System; using Microsoft.ClearScript; using Microsoft.ClearScript.V8; // create a script engine using (var engine =...