diff --git a/reference/conanfile/tools/cmake.rst b/reference/conanfile/tools/cmake.rst index 6e073a28a13..8585a395742 100644 --- a/reference/conanfile/tools/cmake.rst +++ b/reference/conanfile/tools/cmake.rst @@ -314,6 +314,6 @@ Equivalent to running :command:`cmake --build . --target=RUN_TESTS`. conf ++++ -- ``tools.microsoft:msbuild_verbosity`` will accept one of ``"Quiet", "Minimal", "Normal", "Detailed", "Diagnostic"`` to be passed +- ``tools.microsoft.msbuild:verbosity`` will accept one of ``"Quiet", "Minimal", "Normal", "Detailed", "Diagnostic"`` to be passed to the ``CMake.build()`` command, when a Visual Studio generator (MSBuild build system) is being used for CMake. It is passed as an argument to the underlying build system via the call ``cmake --build . --config Release -- /verbosity:Diagnostic`` diff --git a/reference/conanfile/tools/microsoft.rst b/reference/conanfile/tools/microsoft.rst index 163af330f23..04dce9956d8 100644 --- a/reference/conanfile/tools/microsoft.rst +++ b/reference/conanfile/tools/microsoft.rst @@ -210,5 +210,5 @@ Where: conf ++++ -- ``tools.microsoft:msbuild_verbosity`` will accept one of ``"Quiet", "Minimal", "Normal", "Detailed", "Diagnostic"`` to be passed +- ``tools.microsoft.msbuild:verbosity`` will accept one of ``"Quiet", "Minimal", "Normal", "Detailed", "Diagnostic"`` to be passed to the ``MSBuild.build()`` call as ``msbuild .... /verbosity:XXX`` diff --git a/reference/config_files/global_conf.rst b/reference/config_files/global_conf.rst index ba26cc4f34d..9773bb090ca 100644 --- a/reference/config_files/global_conf.rst +++ b/reference/config_files/global_conf.rst @@ -30,11 +30,11 @@ have priority over globally defined ones in *global.conf*, and can be defined as ... [conf] - tools.microsoft:msbuild_verbosity=Diagnostic + tools.microsoft.msbuild:verbosity=Diagnostic Existing configurations: -- ``tools.microsoft:msbuild_verbosity`` allows defining a value from ``"Quiet", "Minimal", "Normal", "Detailed", "Diagnostic"`` for build using the +- ``tools.microsoft.msbuild:verbosity`` allows defining a value from ``"Quiet", "Minimal", "Normal", "Detailed", "Diagnostic"`` for build using the MSBuild system, it could be with the ``tools.microsoft.MSBuild`` or with the ``tools.cmake.CMake`` helpers.