I recently developed a code snippet for versioning JavaScript files by appending the file path with an md5 hash. Here's an example:
<script src="../Javascript/Navigation.js" type="text/javascript"></script>
which transforms into:
<script src="../Javascript/Navigation.js?md5=70D2B4D1F236C7E340D9152B9E4102C3" type="text/javascript"></script>
While this method is quite standard, I am facing challenges in implementing it for CSS files located in the app_themes folder. How can I modify the CSS links in a similar manner?