Can a server have more than one .Net frameworks. Our Application is made in .Net 3.5 but server is having old versions.So can we install one more framework on server and it will not affect other applications.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In reality, .NET 3.5 is not a separate version – it is additions to the 2.* CLI. The main decision here is 2.* or 4.*. If this is a web application, you can configure IIS to decide which CLI to use.
So: if the “old versions” are 2.*, then installing .NET 3.5 will impact the existing applications, and the service packs could cause behaviour changes in some edge cases (pretty unlikely most of the time). More likely: the service packs that come with 3.5 will fix some existing BCL bugs.
A better option, though, might be to move your new app to 4.0; that is separate to the older versions, so you get an independent .NET engine. Perhaps just as important: you’ll get all the current libraries and fixes.