Skip to content

Commit cc835bf

Browse files
Make a couple of features non-experimental (#78028)
These features have been shipping for more than a year and haven't needed any significant changes. Moving out of experimental bucket.
2 parents 87ff4d2 + a85fa7f commit cc835bf

32 files changed

+117
-188
lines changed

src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageControl.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
</StackPanel>
4242
<StackPanel>
4343
<CheckBox x:Name="DisplayDiagnosticsInline"
44-
Content="{x:Static local:AdvancedOptionPageStrings.Option_Display_diagnostics_inline_experimental}"/>
44+
Content="{x:Static local:AdvancedOptionPageStrings.Option_Display_diagnostics_inline}"/>
4545
<StackPanel Margin="15, 0, 0, 0">
4646
<RadioButton GroupName="Inline_diagnostic_location"
4747
x:Name="at_the_end_of_the_line_of_code"
@@ -201,7 +201,7 @@
201201
Content="{x:Static local:AdvancedOptionPageStrings.Option_Split_string_literals_on_enter}" />
202202
<CheckBox x:Name="Fix_text_pasted_into_string_literals_experimental"
203203
x:Uid="Fix_text_pasted_into_string_literals_experimental"
204-
Content="{x:Static local:AdvancedOptionPageStrings.Option_Fix_text_pasted_into_string_literals_experimental}" />
204+
Content="{x:Static local:AdvancedOptionPageStrings.Option_Fix_text_pasted_into_string_literals}" />
205205
<CheckBox x:Name="ShowRemarksInQuickInfo"
206206
Content="{x:Static local:AdvancedOptionPageStrings.Option_ShowRemarksInQuickInfo}" />
207207
<CheckBox x:Name="RenameTrackingPreview"

src/VisualStudio/CSharp/Impl/Options/AdvancedOptionPageStrings.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ public static string Option_Show_hints_for_implicit_object_creation
124124
public static string Option_Show_hints_for_collection_expressions
125125
=> ServicesVSResources.Show_hints_for_collection_expressions;
126126

127-
public static string Option_Display_diagnostics_inline_experimental
128-
=> ServicesVSResources.Display_diagnostics_inline_experimental;
127+
public static string Option_Display_diagnostics_inline
128+
=> ServicesVSResources.Display_diagnostics_inline;
129129

130130
public static string Option_at_the_end_of_the_line_of_code
131131
=> ServicesVSResources.at_the_end_of_the_line_of_code;
@@ -361,8 +361,8 @@ public static string Stack_Trace_Explorer
361361
public static string Option_Automatically_open_stack_trace_explorer_on_focus
362362
=> ServicesVSResources.Automatically_open_stack_trace_explorer_on_focus;
363363

364-
public static string Option_Fix_text_pasted_into_string_literals_experimental
365-
=> ServicesVSResources.Fix_text_pasted_into_string_literals_experimental;
364+
public static string Option_Fix_text_pasted_into_string_literals
365+
=> ServicesVSResources.Fix_text_pasted_into_string_literals;
366366

367367
public static string Option_Go_To_Definition
368368
=> ServicesVSResources.Go_To_Definition;

src/VisualStudio/Core/Def/ServicesVSResources.resx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1471,8 +1471,8 @@ Additional information: {1}</value>
14711471
<data name="This_rule_is_not_configurable" xml:space="preserve">
14721472
<value>This rule is not configurable</value>
14731473
</data>
1474-
<data name="Display_diagnostics_inline_experimental" xml:space="preserve">
1475-
<value>Display diagnostics inline (experimental)</value>
1474+
<data name="Display_diagnostics_inline" xml:space="preserve">
1475+
<value>Display diagnostics inline</value>
14761476
</data>
14771477
<data name="at_the_end_of_the_line_of_code" xml:space="preserve">
14781478
<value>at the end of the line of code</value>
@@ -1653,8 +1653,8 @@ Additional information: {1}</value>
16531653
<data name="Navigating" xml:space="preserve">
16541654
<value>Navigating</value>
16551655
</data>
1656-
<data name="Fix_text_pasted_into_string_literals_experimental" xml:space="preserve">
1657-
<value>Fix text pasted into string literals (experimental)</value>
1656+
<data name="Fix_text_pasted_into_string_literals" xml:space="preserve">
1657+
<value>Fix text pasted into string literals</value>
16581658
</data>
16591659
<data name="Go_To_Definition" xml:space="preserve">
16601660
<value>Go To Definition</value>

src/VisualStudio/Core/Def/xlf/ServicesVSResources.cs.xlf

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/VisualStudio/Core/Def/xlf/ServicesVSResources.de.xlf

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/VisualStudio/Core/Def/xlf/ServicesVSResources.es.xlf

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/VisualStudio/Core/Def/xlf/ServicesVSResources.fr.xlf

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/VisualStudio/Core/Def/xlf/ServicesVSResources.it.xlf

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/VisualStudio/Core/Def/xlf/ServicesVSResources.ja.xlf

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/VisualStudio/Core/Def/xlf/ServicesVSResources.ko.xlf

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)