Simple as that: In ASP.NET MVC5 view, how do I pass parameter to requirejs urlArgs? I would like to read assembly version like this...
var assemblyVersion = System.Reflection.Assembly.GetExecutingAssembly()
.GetName()
.Version
.ToString();
... and pass it to requirejs to bust cache and load the latest version. Tried various things but still unable to properly reach the requirejs configuration from the Razor markup :(