We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9c433e commit 3ef9b12Copy full SHA for 3ef9b12
eng/build.ps1
@@ -627,6 +627,13 @@ function Deploy-VsixViaTool() {
627
# Configure RemoteHostOptions.OOP64Bit for testing
628
$oop64bitValue = [int]$oop64bit.ToBool()
629
&$vsRegEdit set "$vsDir" $hive HKCU "Roslyn\Internal\OnOff\Features" OOP64Bit dword $oop64bitValue
630
+
631
+ # Disable targeted notifications
632
+ if ($ci) {
633
+ # Currently does not work via vsregedit, so only apply this setting in CI
634
+ #&$vsRegEdit set "$vsDir" $hive HKCU "RemoteSettings" TurnOffSwitch dword 1
635
+ reg add hkcu\Software\Microsoft\VisualStudio\RemoteSettings /f /t REG_DWORD /v TurnOffSwitch /d 1
636
+ }
637
}
638
639
# Ensure that procdump is available on the machine. Returns the path to the directory that contains
0 commit comments