I need to record the build time of the project to find out the average build time in VSCode. For example, this is how it can be implemented in Xcode https://github.com/timroesner/BuildTimes. I have already tried "preLaunchTask", "postDebugTask" in launch.json, but it's not exactly what I need.
Is there a way to track a build time in VSCode and record it to a text file
700 views Asked by dagdk At
1
You can use Compound tasks.
The tasks to perform are:
Modify the
Build
task to what you need.In your launch.json set the
preLaunchTask
toRecord Build Time