gpt4 book ai didi

visual-studio - 如何通过脚本更改 Visual Studio 构建输出的详细程度?

转载 作者:行者123 更新时间:2023-12-04 17:26:21 25 4
gpt4 key购买 nike

请注意,我不是在谈论 msbuild 输出的冗长性,而是在谈论 devenv - IDE:

enter image description here

它为此使用注册表。然而,在 VS 2015 中,注册表项是明确的,下面的简单脚本完成了这项工作:

Param(
[Parameter(Mandatory)][ValidateRange(1,4)][int]$level
)

$path = "HKCU:\Software\Microsoft\VisualStudio\14.0\General"

Set-ItemProperty -Path $path -Name MSBuildLogFileVerbosity -Value $level -Type DWord
Set-ItemProperty -Path $path -Name MSBuildLoggerVerbosity -Value $level -Type DWord

在 VS 2019 中,注册表路径包含一个 guid,并且 key 本身看起来有点奇怪。那么,这是我提出问题的机会 - 是否有更好的编程方式?

编辑 1

所以我阅读了评论中引用的帖子并想出了以下功能:

$VSBuildVerbosityLevels = @(
'quiet',
'minimal',
'normal',
'detailed',
'diagnostic'
)
function Get-VSBuildVerbosity
{
[CmdLetBinding()]
param()
$vsWhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
$installPath = & $vsWhere -latest -property installationPath
$vsregedit = "$installPath\Common7\IDE\vsregedit.exe"

$cmd = "& `"$vsregedit`" read local HKCU General MSBuildLoggerVerbosity dword"
Write-Verbose $cmd
$Level = (Invoke-Expression $cmd).Substring('Name: MSBuildLoggerVerbosity, Value: '.Length)
$VSBuildVerbosityLevels[$Level]
}

请注意:

C:\> Get-VSBuildVerbosity -Verbose
VERBOSE: & "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\vsregedit.exe" read local HKCU General MSBuildLoggerVerbosity dword
minimal
C:\>

但它似乎没有返回正确的结果: enter image description here

VS 版本应该是正确的:

Microsoft Visual Studio Enterprise 2019
Version 16.6.3
VisualStudio.16.Release/16.6.3+30225.117
Microsoft .NET Framework
Version 4.7.03190

Installed Version: Enterprise

...

根据 procmon,更改 IDE 中的值会影响以下注册表项:

\REGISTRY\A\{a7e8587a-40a4-a5b0-0119-e9050f63198a}\Software\Microsoft\VisualStudio\16.0_44c67ac6\General\MSBuildLoggerVerbosity

我错过了什么?

编辑 2

运行 procmon 显示 VS IDE 和 vsregedit 触及不同的注册表项: enter image description here

  • VS IDE - \REGISTRY\A\{a7e8587a-40a4-a5b0-0119-e9050f63198a}\Software\Microsoft\VisualStudio\16.0_44c67ac6\General\MSBuildLoggerVerbosity
  • vsregedit - \REGISTRY\A\{d8a7e391-9143-745b-e649-9339d4390cfe}\Software\Microsoft\VisualStudio\16.0_44c67ac6\General\MSBuildLoggerVerbosity

现在呢?

编辑 3

这是我设置它的代码:

$VSBuildVerbosityLevelMap = @{ }
$VSBuildVerbosityLevels | ForEach-Object { $i = 0 } {
$VSBuildVerbosityLevelMap[$_] = $i
++$i
}
function Set-VSBuildVerbosity(
[Parameter(Mandatory)][ValidateSet('quiet', 'minimal', 'normal', 'detailed', 'diagnostic')]$Level
)
{
$vsWhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
$installPath = & $vsWhere -latest -property installationPath
$vsregedit = "$installPath\Common7\IDE\vsregedit.exe"

$cmd = "& `"$vsregedit`" set local HKCU General MSBuildLoggerVerbosity dword $($VSBuildVerbosityLevelMap[$Level])"
Write-Verbose $cmd
$null = Invoke-Expression $cmd
}

编辑 4

这真的很好奇。我正在使用我的函数来设置详细程度并且它似乎正在工作,但 Visual Studio 对话框似乎无法识别它!观察: enter image description here

构建输出诊断,但构建和运行属性表告诉我们构建输出的详细程度是最小的!

这让我大吃一惊 - Powershell 代码似乎正确设置了详细程度,但构建和运行选项对话框似乎报告了不同的值!

最佳答案

Visual Studio 包含一个 vsregedit.exe 实用程序,您可以使用它来更改 Visual Studio 设置:

"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\VsRegEdit.exe" set local HKCU General MSBuildLoggerVerbosity dword 4

关于visual-studio - 如何通过脚本更改 Visual Studio 构建输出的详细程度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63046302/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com