Projucer settings for visual studio 2022 (Linker library directories)

I’m building my juce project with boost library but I had to add to msvc project properties two entries:
Visual Studio: C/C+±>General → Additional Include DirectoriesC:\Program Files\boost\boost_1_80_0
Linker-> Additional Library Directories C:\Program Files\boost\boost_1_80_0\stage\lib
the project builds fine.

Now I want to put these settings into the projucer file to make project management better:
So in Projucer: Header Search Paths C:\Program Files\boost\boost_1_80_0 works fine, but…
Where in projucer do I put the “Additional Library Directories”?

Hello

In the Projucer, you have in the Exporters, a “Visual Studio 2022” entry.
There you have a field called “External Libraries to Link”.
In the Debug and Release entries, you have a field called “Extra Library Search Paths”.

Best regards

Thanks so much.
It turns out that the two fields in Debug were appropriate (for me) to enter:
VS Additional Include Directories entry goes to Projucer:Debug/Header Search Paths
VS Additional Library Directories entry goes to Projucer:Debug/Extra Library Search Paths
Thanks again!