VS 2019 build optimization?

James J 586 Reputation points
2021-08-12T17:31:25.627+00:00

Can you please suggest to minimize the compile time from VS 2019 for my C++ and .NET application.

Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,888 questions
Not Monitored
Not Monitored
Tag not monitored by Microsoft.
37,794 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Viorel 114.7K Reputation points
    2021-08-12T19:08:04.71+00:00

    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.

    0 comments No comments