How to configure the intermediate output directory in C#

后端 未结 3 616
鱼传尺愫
鱼传尺愫 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条回答
  •  -上瘾入骨i
    2021-01-31 09:18

    I've used:

    
        AnyCPU
        true
        full
        false
        $(OBJDIR)\$(SolutionName)\bin\$(Configuration)\
        $(OBJDIR)\$(SolutionName)\obj\$(Configuration)\
        $(BaseIntermediateOutputPath)\
        DEBUG;TRACE
        prompt
        4
    
    

    (In Visual Studio 2012 Beta, FWIW), and it works fine.

    The OBJDIR on my machine points to E:\BuildOutput.

提交回复
热议问题