Re: Does the 3.5 framework use the machine.config from the 2.0 framework?
|
Ronald Moraiah |
|
5/20/2008 4:39:32 AM |
.NET 3.5 is only a layer on top of 2.0. You can still required to maintain 2.0 to ensure that 3.5 also runs. So, the Framework directory for 3.5 only contains files that are needed for the new version. Anything that is unchanged is still accessed through 2.0. So, I guess the answer to your question is that you need to maintain the machine.config under 2.0. Thus, if it's already been configured to work with 2.0, then it should be ready for 3.5. Post Comments |
|
Thanks Ronald, After doing a little more search on the open web, I found some replies in Scott Gu's blog that explained how .Net 3.5 uses the same CLR as version 2.0 and how the configuration files used are determined by the CLR version, not the framework version. Post Comments |
|