-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BaseIntermediateOutputPath for C++ projects #2308
Comments
<PropertyGroup>
<OutDir>$(SolutionDir)bin\$(Configuration)\</OutDir>
<IntDir>$(OutDir)obj\</IntDir>
</PropertyGroup> In Though not a show-stopper, it would be nice to have unified syntax across the board: either |
We could use I think |
The problem still exists on VS 2022, I debugged with this for hours, and found the definition in <IntDir Condition="'$(IntDir)'=='' AND '$(IntermediateOutputPath)'!=''">$(IntermediateOutputPath)</IntDir>
<IntDir Condition="'$(IntDir)'=='' AND '$(IntermediateOutputPath)'=='' and '$(Platform)' == 'Win32'">$(Configuration)\</IntDir>
<IntDir Condition="'$(IntDir)'=='' AND '$(IntermediateOutputPath)'=='' and '$(Platform)' != 'Win32'">$(Platform)\$(Configuration)\</IntDir> Before this, there is no process from |
VC Team should update their targets to remove usages of |
Seems like it's not supported for C++ projects.
The text was updated successfully, but these errors were encountered: