I am doing plugin development via Visual Studio and think I am dealing with caching issues in Umbraco. My problem is that I am having difficulty getting code changes (mainly in js) to take effect. Is there a way to disable caching in development? or is there a better solution to speeding up my development time?
Plugin Changes Not Updating
I am doing plugin development via Visual Studio and think I am dealing with caching issues in Umbraco. My problem is that I am having difficulty getting code changes (mainly in js) to take effect. Is there a way to disable caching in development? or is there a better solution to speeding up my development time?
Given that you're developing a package then:
Make sure that debug equals true in your Web.config file.
If that is not the case then sometimes I've had to build my project for the changes to take effect.
Also make sure that the plugin is included in the projects App_Plugins folder.
is working on a reply...