Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs for rename 'tools.microsoft:msbuild_verbosity' to 'tools.microsoft.msbuild:verbosity' #2059

Merged
merged 1 commit into from Mar 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion reference/conanfile/tools/cmake.rst
Expand Up @@ -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``
2 changes: 1 addition & 1 deletion reference/conanfile/tools/microsoft.rst
Expand Up @@ -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``
4 changes: 2 additions & 2 deletions reference/config_files/global_conf.rst
Expand Up @@ -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.