posted on Sunday, July 29, 2007 2:21 PM by Vimpyboy

Bugfix in VS 2008 Beta 2

There is a bug in Visual Studio 2008 Beta 2 that says you haven´t declared writeAccessProperties when you activate profileService in web.config. It´s easy to fix, though.

What you have to do is change line 4121 in %Program Files%\Microsoft Visual Studio 9.0\Xml\Schemas\DotNetConfig.XSD.

Old:
<xs:attribute name="writeAccessProperites" type="xs:string" use="optional" />

New:
<xs:attribute name="writeAccessProperties" type="xs:string" use="optional" />

Comments

# re: Bugfix in VS 2008 Beta 2

Tuesday, July 31, 2007 9:53 AM by Rick
I do not see any difference in the two entries.

# re: Bugfix in VS 2008 Beta 2

Friday, August 03, 2007 5:58 AM by doraeimo
"Properites" and "Properties",they are different!

# re: Bugfix in VS 2008 Beta 2

Sunday, October 14, 2007 12:29 PM by bu
thanks , works Great :)