Reputation: 505
Can I compile an ASP.NET 4 application, and run this on a server with ASP.NET 3.5 installed?
I have seen this method for ASP.NET 3.5 MVC running on servers with only 2.0 installed: Is it possible to run an ASP.NET 3.5 MVC 1.0 application on a server that supports ASP.NET 2.0 only?
Upvotes: 3
Views: 395
Reputation: 7154
In VS you can set up any framework version number as the target - including 3.5
Upvotes: 0
Reputation: 13306
Nope. The .NET 3.5 runtime is the same as the .NET 2.0. The .NET 4.0 runtime is new
Upvotes: 5