I am trying to integrate your great package into a CMS system that gets deployed via the GAC to many websites running on the same server.
Primarily I want to use the .less features with Bootstrap although I am sure other areas will prove useful.
I am installed the various assemblies in the GAC and that seems to be OK.
I have setup the various config changes in the machine level web.config
I cannot seem to make the installed assemblies accessible in the web project project.
It seems to work fine when I install the assemblies via NuGet directly to the project.
Have you ever deployed this as a server level installer to make it available to all projects ?
Comments: Hello, Trevor! You are not added `Newtonsoft.Json.dll` to GAC. ``` <add assembly="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed" /> ``` All dependencies of the BundleTransformer.Less 1.8.12 you can see on the page of package - [http://www.nuget.org/packages/BundleTransformer.Less/1.8.12](http://www.nuget.org/packages/BundleTransformer.Less/1.8.12). In Visual Studio, you can use the __«Tools > Library Package Manager > Package Visualizer»__ menu command.
Primarily I want to use the .less features with Bootstrap although I am sure other areas will prove useful.
I am installed the various assemblies in the GAC and that seems to be OK.
I have setup the various config changes in the machine level web.config
I cannot seem to make the installed assemblies accessible in the web project project.
It seems to work fine when I install the assemblies via NuGet directly to the project.
Have you ever deployed this as a server level installer to make it available to all projects ?
Comments: Hello, Trevor! You are not added `Newtonsoft.Json.dll` to GAC. ``` <add assembly="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed" /> ``` All dependencies of the BundleTransformer.Less 1.8.12 you can see on the page of package - [http://www.nuget.org/packages/BundleTransformer.Less/1.8.12](http://www.nuget.org/packages/BundleTransformer.Less/1.8.12). In Visual Studio, you can use the __«Tools > Library Package Manager > Package Visualizer»__ menu command.