I try to compile my web project with aspnet_compiler.
aspnet_compiler -f -fixednames -u -v / -p C:\test\testproj\testproj c:\test\output -c
The testproj is a web site that has a dependency to a class library called MyLib.
The problem is that aspnet_compiler only compiles the web site and not the class library MyLib. So whenever I make changes to the class library I have to either manually build the MyLib using msbuild and copy the .dll. Or rebuild the solution in visual studio.
How can I make aspnet_compiler rebuild all referenced projects?