I've recently been converting a website project over to a web application project. The old website had a C# file in the App_Code folder which worked fine even though the rest of the project is in VB. Since I've converted the project to a web app, the .cs file will no longer compile, so I moved the .cs file to its own project to compile as a .dll and included it in the solution so it will compile seperately. The problem is that now when I run the site, I get a runtime error refering to that dll:
This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.
I can't downgrade the .net framework of the .cs file because it uses System.Web.Linq, which only dates back to 3.5. When I try to change the framework of the web app it already shows up as 4.0 (which makes no sense to me). The version info for the server is:
Version Information: Microsoft .NET Framework Version:2.0.50727.3623; ASP.NET Version:2.0.50727.3618
Is there anyway to restore the old functionality without changing the .net framework on the server? Am I simply missing a configuration file or something?