I’m writing a .NET command-line application that will migrate users from an existing database into aspnetdb. To simplify the user-specific settings, I’m using the profile class that Joel Spolsky wrote about here.
It works great in the ASP.NET MVC website, but for some reason it’s throwing a TypeLoadException when being used from this new application. I’m not sure why the framework is trying to load the new class from System.Web.
It turns out that you need to be more specific in the
app.configfile. Instead of writing thisyou need to specify the name of your application (or assembly)