Initially, I created a console app using Mass Transit as my service bus. Recently, I switched to NServiceBus, which doesn't require you to make a console app, but a class library instead. I simply switched in the project properties the setting that changes it from a console app to a library, but the constraint that you can only build it for x86 is still in effect. I can't change the build type to Any CPU now that it is a console app, which should now be valid. Is there any way to completely change my app to a class library so that I can run the build Any CPU option? Do I need to create a new project, copy files into it and continue that way? Or is it as simple as changing something in the .proj file?
This question gives more context around this issue of x86 only for console applications.