Set Intermediate Directory in C# Project

visual-studio-2008

Solution

You need to override BaseIntermediateOutputPath msbuild var, more about it here.

Problem

In VS 2008, is there a way to set the intermediate directory (where the .obj files go, not the final targets) in a C# project?

Original source