frank
frank

Reputation: 505

ASP.NET 4 running on server with ASP.NET 3.5

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

Answers (2)

mfeingold
mfeingold

Reputation: 7154

In VS you can set up any framework version number as the target - including 3.5

Upvotes: 0

mcintyre321
mcintyre321

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

Related Questions