From 4c266da24d902ba575e8cc568aad33dfba23742f Mon Sep 17 00:00:00 2001 From: nerix Date: Sat, 10 May 2025 19:34:35 +0200 Subject: [PATCH] docs: update natvis repo (#6202) --- BUILDING_ON_WINDOWS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILDING_ON_WINDOWS.md b/BUILDING_ON_WINDOWS.md index 7af9b9a9..d4a9e80a 100644 --- a/BUILDING_ON_WINDOWS.md +++ b/BUILDING_ON_WINDOWS.md @@ -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.