I have an ASP.NET application which relies on an external assembly which is not in the GAC. The app has a .refresh file which copies the assembly into the bin directory when the app is compiled.
When I install the app on a production server (by copying the app files into a virtual directory), the bin directory is not updated automatically by the presence of the .refresh file like I thought it would. I tried using the aspnet_compiler tool but that doesn't work since it expects the assemblies to be in the bin directory already.
How do I get .NET to update the app's bin directory without visual studio?