Visual Studio keeps adding property to my csproj. Why?

后端 未结 4 1381
没有蜡笔的小新
没有蜡笔的小新 2021-01-17 14:46

I\'m using Visual Studio 2012 RC to work with my C# solution. All my configuration-specific settings are stored within a single .props file which is then included by all my

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-17 15:14

    You have specified the in your project. The Property file will have the BaseIntermediateOutputPath. If you don't specify any value in it will be derived from your Base.

    The full intermediate output path as derived from BaseIntermediateOutputPath, if no path is specified. For example, \obj\debug. If this property is overridden, then setting BaseIntermediateOutputPath has no effect.

    Refer: http://msdn.microsoft.com/en-us/library/bb629394.aspx

提交回复
热议问题