Can you please suggest to minimize the compile time from VS 2019 for my C++ and .NET application.
Can you please suggest to minimize the compile time from VS 2019 for my C++ and .NET application.
Hi @JamesJ-9502, you can also refer to the blog: Recommendations to speed C++ builds in Visual Studio.
In case of C++, do not disable the “Precompiled Headers” option, which can be specified in project Wizard, place all of #include <system files> to stdafx.h or pch.h file, and also enable the “C/C++, General, Multi-processor compilation” option for all of projects, platforms and configurations.
13 people are following this question.