I am currently using the gulp-bundle-assets module in a task to bundle css and js in my project. Each time I run it the module generates new filename making sure the browser will pick the latest bundle. However I need to change my file references manually in my html whenever the filename changes. The gulp-bundle-asset suggests a way to programmatically update the views by reading a json file.
What would be the proper way to handle the bundling with dynamic filenames in Visual Studio?
How are the relative paths for static content treated such as images,fonts?
Thanks!