With ASP.NET Bundling with a ScriptBundle
function StartController($scope, $location, $rootScope) {}
is transformed to
function StartController(n,t,i) {}
However, as I am using AngularJs, for dependency injection to still work, the argument names must not be changed when minified. How can I ensure $scope, $location and $rootScope keep these names with the minification through a ScriptBundle, but allow argument renaming in other places?