How to debug two versions
Modules
- Create two git repos.
- In one of them change
- Modules.32\Common\Project\CommonProject.props
<IntDir>U:/Modules.32/$(ProjectName)\</IntDir>
to <IntDir>U:/TEMP/Modules.32/$(ProjectName)\</IntDir>
- Modules.32\Common\Project\CommonProjectCSDll.props
<IntermediateOutputPath>u:\Modules.32\$(RootNamespace)\</IntermediateOutputPath>
to <IntermediateOutputPath>u:\TEMP\Modules.32\$(RootNamespace)\</IntermediateOutputPath>
<BaseIntermediateOutputPath>u:\Modules.32\$(RootNamespace)\</BaseIntermediateOutputPath>
to <BaseIntermediateOutputPath>u:\TEMP\Modules.32\$(RootNamespace)\</BaseIntermediateOutputPath>
Using temp files
_com_ptr(ITempFilesManager);
if (FAILED(GetPROInterface(IID_ITempFilesManager, (void**)&pITempFilesManager)) || FAILED(pITempFilesManager->GetTempFilesAutoDeleteHolder(&m_pITempFilesHolder)))
m_pITempFilesHolder = NULL;