Visual Studio fügt meiner csproj immer wieder Eigenschaften hinzu. Warum?

Ich verwende Visual Studio 2012 RC, um mit meiner C # -Lösung zu arbeiten. Alle meine konfigurationsspezifischen Einstellungen werden in einer einzigen .props-Datei gespeichert, die dann in allen meinen .csproj-Dateien enthalten ist.

Dennoch besteht VS darauf, dies vor das Include zu stellen:

<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
   <IntermediateOutputPath>C:\Users\xyz\AppData\Local\Temp\vs855E.tmp\Debug\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
   <IntermediateOutputPath>C:\Users\xyz\AppData\Local\Temp\vs855E.tmp\Release\</IntermediateOutputPath>
</PropertyGroup>

<Import Project="$(MSBuildProjectDirectory)\..\Common.props" />

Warum das?

Zu Ihrer Information, meine gemeinsame Datei sieht so aus:http://pastebin.com/Uued1XY0

Antworten auf die Frage(3)

Ihre Antwort auf die Frage