- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
请注意,我不是在谈论 msbuild 输出的冗长性,而是在谈论 devenv - IDE:
它为此使用注册表。然而,在 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:\>
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 触及不同的注册表项:
\REGISTRY\A\{a7e8587a-40a4-a5b0-0119-e9050f63198a}\Software\Microsoft\VisualStudio\16.0_44c67ac6\General\MSBuildLoggerVerbosity
\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 对话框似乎无法识别它!观察:
构建输出诊断,但构建和运行属性表告诉我们构建输出的详细程度是最小的!
这让我大吃一惊 - 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/
我目前正在研究数据库,我看到 degree 和 cardinality 用作相同的术语,或在某些其他学位定义为否。关系中涉及的实体的数量,并进一步分类为一元、二元和三元。 某些放置度数定义为关系类型的
我是一名优秀的程序员,十分优秀!