After installing the host bundling did you reset IIS and WAS so the changes would take effect?
I'll also point out that wwwroot
is the root of the default web site. Your app(s) should not be deployed there. If oldapp
is your DLL then it is in the wrong place. The default website should remain IIS's default. Your app(s) should either be their own sites (using DNS or ports to differentiate) or subapps. In either case each app will reside in its own folder. Where that folder resides is irrelevant but for simple stuff within wwwroot
is sufficient.