Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a VS 2008 C# Web project and whenever I make some changes to the files in it (not even to the project file itself) VS will remove some lines like this from the csproj file:

<SubType>ASPXCodeBehind</SubType>

So something like this:

<Compile Include="Default.aspx.cs">
  <DependentUpon>Default.aspx</DependentUpon>
  <SubType>ASPXCodeBehind</SubType>
</Compile>

will become

<Compile Include="Default.aspx.cs">
  <DependentUpon>Default.aspx</DependentUpon>
</Compile>

BUT the next time I work on this project it will add those lines back! It keeps going back and forth like this, resulting in a lot of meaningless "changes" in our source control system. This never used to happen with VS 2005 and it doesn't seem to be happening for other developers who work on the same project file, only for me.

Does anyone know why this is happening and how I can stop it from doing this?

share|improve this question
1  
how strange, this has just happened to me for the first time. I checked in my solution last night and this morning my .csproj file has changed. having had a little dig around on Google it seems that this has affected a handful of people for years! but no reason or resolution so far as I can see.. – Alex Jun 17 '09 at 5:57
same here, this is currently happening to me – Martin Aug 24 '09 at 17:08
1  
I have the same problem except the the subtype element does not added again. Only happens to me as well and not to any of the other developers on the team. I have a discussion about it here, hopefully I will get some answers. – user152123 Sep 14 '09 at 15:22
Happening to me as well. Totally obnoxious. Two people on the team have VS that do this while the others don't. Seems like something in a hotfix is doing this. No help out there for this that I can find. – jcollum Sep 17 '10 at 16:43
2  
this is currently happening to me, but me I have Visual studio 2010 – Guillaume V Feb 24 '12 at 20:09

3 Answers

For me, the difference depends on whether or not the web project is open in Visual Studio.

I find if I commit the project file to version control with the project open in Visual Studio the SubType elements are present. Closing the solution/project then removes the SubType elements from the project file. Now I always ensure my commits are performed with the project closed in VS to avoid unnecessary changes to the project file.

share|improve this answer
I think this is the solution I needed. Thanks. – lorddev Sep 6 '12 at 5:12

Splitting the content of your file into multiple files - one file per class may help.

https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=283434

share|improve this answer
1  
Thanks, but no, that doesn't help - I only have the one class (an ASPX page codebehind class) in each affected file. – EMP Nov 7 '08 at 5:30

Working on VS2010 and solved this issue by deleting solutionFileName.sln.DotSettings.user file and solutionFileName.suo. That helped me, give it a try.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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