Shannon Deminick
Shannon Deminick
Thanks for the PR! This will be a little more complex than this unfortunately. The method you are calling in to to render the Js is this one: https://github.com/Shazwazza/ClientDependency/blob/master/ClientDependency.Mvc/HtmlHelperExtensions.cs#L267 Which...
Only thing I can think of is if the version number was changed to a version number that previously existed and there were cached files still there (in App_Data/TEMP/ClientDependency) with...
Suppose some null checks can be added to where it is throwing from: `at ClientDependency.Core.CompositeFiles.CompositeDependencyHandler.ValidateRequest(HttpContext context, String& fileKey, ClientDependencyType& type, Int32& version) in C:\Users\Shannon\Documents_Projects\ClientDependency\ClientDependency\src\ClientDependency.Core\CompositeFiles\CompositeDependencyHandler.cs:line 37` which supposedly is here https://github.com/Shazwazza/ClientDependency/blob/master/src/ClientDependency.Core/CompositeFiles/CompositeDependencyHandler.cs#L37...
If you can reproduce then it should be easy to fix. As mentioned above, some null checks could be added: https://github.com/Shazwazza/ClientDependency/issues/193#issuecomment-759886395 If you have time to submit a PR that...
There's another discussion about a similar thing here: https://github.com/Shazwazza/ClientDependency/issues/147#issuecomment-423111708 By the time it reaches that line of code that you mention, the path must be an absolute URI. For relative...
That will be one way to make it work for sure. If you want to create a PR to allow for non-absolute paths for that specific line i can run...
You should still be able to debug this with debug="false" in your web.config
I do this all the time. Do a ctrl+F5 to launch your web project in VS without debugging. Then attach to process iisexpress. This definitely works, i can do a...
maybe you bumped to a version that had already been created/persisted in the cache folder? Try clearing the CDF cache files in App_Data/ClientDependency and see what happens
Seems very odd, but no there's no additional caching apart from output caching but that will be cleared on app restart. Perhaps you have a rogue partial view or usercontrol...