Como forçar o realce de sintaxe para grandes arquivos XML?

2

Para grandes arquivos XML, parece que o editor de texto do Visual Studio não tentará realçar a sintaxe, portanto, tudo é preto e branco.

Existe uma maneira de forçá-lo a analisar o destaque?

    
por Louis 23.11.2012 / 00:26

2 respostas

2

Acontece que o tamanho máximo do arquivo para o editor XML é de 10 MB. Depois de alterar o limite na chave a seguir, o destaque da sintaxe está de volta sem problemas de desempenho visíveis:

HKCU\Software\Microsoft\VisualStudio.0_Config\XmlEditor\MaxFileSizeSupported‌​ByLanguageService

Execute regedit para navegar para esse caminho no Registro do Windows. HKCU significa HKEY_CURRENT_USER .

    
por 16.12.2012 / 03:46
1

Execute isso no powershell para VS 2017 e superior

$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 read "$installPath" "HKLM" "XmlEditor" "MaxFileSizeSupportedByLanguageService" string
& $VsRegEdit set "$installPath" "HKLM" "XmlEditor" "MaxFileSizeSupportedByLanguageService" string 100
& $VsRegEdit read "$installPath" "HKLM" "XmlEditor" "MaxFileSizeSupportedByLanguageService" string
    
por 05.02.2018 / 15:05