gpt4 book ai didi

xml - VS 2017 15.1 中的大型 XML 文件

转载 作者:数据小太阳 更新时间:2023-10-29 01:42:04 25 4
gpt4 key购买 nike

我被告知...

'sms-20170225122824.xml' is too large to open with XML editor. The maximum file size is '10' MB. Please update the registry key 'HKCU\Software\Microsoft\VisualStudio\15.0_65fa8ce7_Config\XmlEditor\MaxFileSizeSupportedByLanguageService' to change the maximum size.

不仅 key 15.0_65fa8ce7_Config 不存在,所以我手动创建了它(加上子 key )而且 typeMaxFileSizeSupportedByLanguageService?

为什么它还不存在?

Registry

最佳答案

这是一个为所有用户完成这项工作的小型 powershell

$vsWherePath = Join-Path ${env:ProgramFiles(x86)} "Microsoft Visual Studio\Installer\vswhere.exe"
$installPath = &$vsWherePath -all -latest -property installationPath
$vsregedit = Join-Path $installPath 'Common7\IDE\vsregedit.exe'
& $VsRegEdit set "$installPath" "HKLM" "XmlEditor" "MaxFileSizeSupportedByLanguageService" string 100

如果用户配置单元中已有设置,您可以删除它们或在用户级别设置值——这也不需要管理员权限:

$vsWherePath = Join-Path ${env:ProgramFiles(x86)} "Microsoft Visual Studio\Installer\vswhere.exe"
$installPath = &$vsWherePath -all -latest -property installationPath
$vsregedit = Join-Path $installPath 'Common7\IDE\vsregedit.exe'
& $VsRegEdit set "$installPath" "HKCU" "XmlEditor" "MaxFileSizeSupportedByLanguageService" string 100

关于xml - VS 2017 15.1 中的大型 XML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43889806/

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