How to configure the intermediate output directory in C#

后端 未结 3 622
鱼传尺愫
鱼传尺愫 2021-01-31 09:07

I\'m trying to organize my workspace and want my intermediate objects to be put in the ..\\build\\obj folder in relation to my .csproj file. So I put:

3条回答
  •  暖寄归人
    2021-01-31 09:10

    Do this like Microsoft:

      
        $(BaseIntermediateOutputPath)$(Configuration)\
        $(BaseIntermediateOutputPath)$(PlatformName)\$(Configuration)\
      
    

提交回复
热议问题