In my csproj file, I have a different build path.
<BaseIntermediateOutputPath>C:\Temp\Build\MyProject</BaseIntermediateOutputPath>
When in the prebuild and post build events, I have access to certain macro variables.
$(OutDir)
$(ProjectName)
$(ProjectPath)
$(SolutionDir)
Can I use those variables within my csproj?
For example, I tried the following without success.
<BaseIntermediateOutputPath>C:\Temp\Build\$(ProjectName)</BaseIntermediateOutputPath>