Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does Visual Studio 2010 randomly alter the project files for web.configs? [duplicate]

Why does Visual Studio 2010 randomly alter the project files for web.configs?

Using Mercurial I frequently see in commit windows diffs that are

-    <Content Include="Admin\Web.config" />

+    <Content Include="Admin\Web.config">
+      <SubType>Designer</SubType>
+    </Content>

That it will constantly flip the sub types to exist or not exist.

like image 406
Chris Marisic Avatar asked Feb 25 '11 17:02

Chris Marisic


1 Answers

I've had the same problem on occasion, it occurs for some projects, but not others. It's infuriating.

I haven't figured out the root cause, but I solved this issue by manually inserting the SubType as an attribute.

<Content Include="Admin\Web.config" SubType="Designer" />

It's a hack, but gets rid of the issue, at least in VS2008.

like image 78
jevakallio Avatar answered Nov 14 '22 22:11

jevakallio