docs: update natvis repo (#6202)

This commit is contained in:
nerix
2025-05-10 19:34:35 +02:00
committed by GitHub
parent e793df02ba
commit 4c266da24d
+2 -2
View File
@@ -256,9 +256,9 @@ We can't use Invoke-RestMethod here, because it will automatically convert the b
-->
```powershell
(iwr "https://github.com/qt-labs/vstools/raw/dev/QtVsTools.Package/qt6.natvis.xml").Content.Replace('##NAMESPACE##::', '') | Out-File qt6.natvis
(iwr "https://github.com/qt-labs/vs-debugtools/raw/refs/heads/dev/natvis/qt6.natvis").Content.Replace('##NAMESPACE##::', '') | Out-File qt6.natvis
# [OR] using the permalink
(iwr "https://github.com/qt-labs/vstools/raw/1c8ba533bd88d935be3724667e0087fd0796102c/QtVsTools.Package/qt6.natvis.xml").Content.Replace('##NAMESPACE##::', '') | Out-File qt6.natvis
(iwr "https://github.com/qt-labs/vs-debugtools/raw/4f002491c61714684a8c6cbbd7290c1d891d94eb/natvis/qt6.natvis").Content.Replace('##NAMESPACE##::', '') | Out-File qt6.natvis
```
Now you can debug the application and see Qt types rendered correctly.