Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions eng/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,13 @@ function Deploy-VsixViaTool() {
# Configure RemoteHostOptions.OOP64Bit for testing
$oop64bitValue = [int]$oop64bit.ToBool()
&$vsRegEdit set "$vsDir" $hive HKCU "Roslyn\Internal\OnOff\Features" OOP64Bit dword $oop64bitValue

# Disable targeted notifications
if ($ci) {
# Currently does not work via vsregedit, so only apply this setting in CI
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a bug tracking this we can link to?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, not sure it's a bug either

#&$vsRegEdit set "$vsDir" $hive HKCU "RemoteSettings" TurnOffSwitch dword 1
reg add hkcu\Software\Microsoft\VisualStudio\RemoteSettings /f /t REG_DWORD /v TurnOffSwitch /d 1
}
}

# Ensure that procdump is available on the machine. Returns the path to the directory that contains
Expand Down