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 233d7a0 commit d5b96b2Copy full SHA for d5b96b2
eng/build.ps1
@@ -629,7 +629,11 @@ function Deploy-VsixViaTool() {
629
&$vsRegEdit set "$vsDir" $hive HKCU "Roslyn\Internal\OnOff\Features" OOP64Bit dword $oop64bitValue
630
631
# Disable targeted notifications
632
- &$vsRegEdit set "$vsDir" $hive HKCU "RemoteSettings" TurnOffSwitch dword 1
+ 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