I have a .Net 3.5 class library project that I've migrated to use Visual Studio 2010. It still targets .Net 3.5. This project contains two ASP.Net 2.0 style Web References (with the auto generated Reference.cs files).

During the migration to VS 2010, the Reference.cs files were updated to use .Net 4.0. Specifically, the constructor attribute was change.

The original was:

[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.3053")]

The new value is:

[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.0.30319.1")]

I change the values back in the Reference.cs file, but the attributes are change back whenever I run the "Update Web Reference" command. I also tried adding a new Web Service reference to the project, and they also appear to target .Net 4.0.

Is there a way to prevent these Reference.cs files from being updated to use .Net 4.0?

link|improve this question

73% accept rate
2  
Is this reference change causing any problems? – Tony Abrams Aug 26 '10 at 18:36
Apparently not. I was getting other errors, and I thought this was the root cause. However, I was wrong. – david.mchonechase Aug 27 '10 at 12:22
feedback

2 Answers

up vote 3 down vote accepted

This version number does not mean the web references are using 4.0 constructs. The version identifier a GeneratedCodeAttribute is used to track the version of the tool that generated the code. So it's essentially saying this code was generated using 4.0 web generation tool only.

link|improve this answer
Thanks!! I was getting several other errors with the XmlSerializers DLL, and I thought this was the cause. It was not. – david.mchonechase Aug 26 '10 at 21:32
feedback

Could you just delete the web references and add them back in manually?

link|improve this answer
-1: How would that help? And what would it help? – John Saunders Aug 26 '10 at 20:10
I also tried adding a new Web Service reference to the project, and they also appear to target .Net 4.0. – david.mchonechase Aug 26 '10 at 20:17
John, I have had to remove references and add them back after converting projects so I figured he could try it. – Terry Aug 27 '10 at 11:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.