In ASP.NET web forms, you can use this component to extract a JS file that's embedded in a DLL: http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.getwebresourceurl.aspx. This would also work in ASP.NET MVC since it used the ASP.NET framework.
Since Razor isn't leveraging the ASP.NET framework, is it even possible to extract a resource out of an assembly? Maybe by dynamically constructing the Page class? Or is it not supported?
Thanks.