How to use Preprocessor directives in MVC aspx pages
- by Zuber
I am using MinifyJS.tt which is a T4 template to minify all my JS files automatically.
In my aspx files, I am referencing all the javascript files.
Now, I want to add a condition (maybe compiler directive) to use the original JS file when I am debugging the application, and to use the minified JS files when I simply run the application without debug.
I tried using #if in the aspx page, but that did not seem to work.
Can we make use of preprocessor directives in aspx pages?
Is there an alternative way to achieve my goal?