From da68372f285666bdfcef2686f08fec000a4c05f0 Mon Sep 17 00:00:00 2001 From: 0101 <0101@innit.cz> Date: Wed, 6 Sep 2023 15:16:49 +0200 Subject: [PATCH 1/2] Remove 'Capture identifiers when parsing' setting from VS options --- .../src/FSharp.Editor/LanguageService/LanguageService.fs | 7 +------ vsintegration/src/FSharp.Editor/Options/EditorOptions.fs | 2 -- .../LanguageServicePerformanceOptionControl.xaml | 3 --- vsintegration/src/FSharp.UIResources/Strings.Designer.cs | 9 --------- vsintegration/src/FSharp.UIResources/Strings.resx | 3 --- vsintegration/src/FSharp.UIResources/xlf/Strings.cs.xlf | 5 ----- vsintegration/src/FSharp.UIResources/xlf/Strings.de.xlf | 5 ----- vsintegration/src/FSharp.UIResources/xlf/Strings.es.xlf | 5 ----- vsintegration/src/FSharp.UIResources/xlf/Strings.fr.xlf | 5 ----- vsintegration/src/FSharp.UIResources/xlf/Strings.it.xlf | 5 ----- vsintegration/src/FSharp.UIResources/xlf/Strings.ja.xlf | 5 ----- vsintegration/src/FSharp.UIResources/xlf/Strings.ko.xlf | 5 ----- vsintegration/src/FSharp.UIResources/xlf/Strings.pl.xlf | 5 ----- .../src/FSharp.UIResources/xlf/Strings.pt-BR.xlf | 5 ----- vsintegration/src/FSharp.UIResources/xlf/Strings.ru.xlf | 5 ----- vsintegration/src/FSharp.UIResources/xlf/Strings.tr.xlf | 5 ----- .../src/FSharp.UIResources/xlf/Strings.zh-Hans.xlf | 5 ----- .../src/FSharp.UIResources/xlf/Strings.zh-Hant.xlf | 5 ----- 18 files changed, 1 insertion(+), 88 deletions(-) diff --git a/vsintegration/src/FSharp.Editor/LanguageService/LanguageService.fs b/vsintegration/src/FSharp.Editor/LanguageService/LanguageService.fs index ce2b568fe8b..5f651b337bc 100644 --- a/vsintegration/src/FSharp.Editor/LanguageService/LanguageService.fs +++ b/vsintegration/src/FSharp.Editor/LanguageService/LanguageService.fs @@ -145,10 +145,6 @@ type internal FSharpWorkspaceServiceFactory [] let enableBackgroundItemKeyStoreAndSemanticClassification = editorOptions.LanguageServicePerformance.EnableBackgroundItemKeyStoreAndSemanticClassification - // Default should be true - let captureIdentifiersWhenParsing = - editorOptions.LanguageServicePerformance.CaptureIdentifiersWhenParsing - // Default is false here let solutionCrawler = editorOptions.Advanced.SolutionBackgroundAnalysis @@ -169,7 +165,6 @@ type internal FSharpWorkspaceServiceFactory [] nameof keepAllBackgroundSymbolUses, keepAllBackgroundSymbolUses nameof enableBackgroundItemKeyStoreAndSemanticClassification, enableBackgroundItemKeyStoreAndSemanticClassification - nameof captureIdentifiersWhenParsing, captureIdentifiersWhenParsing nameof solutionCrawler, solutionCrawler |], TelemetryThrottlingStrategy.NoThrottling @@ -186,7 +181,7 @@ type internal FSharpWorkspaceServiceFactory [] enableBackgroundItemKeyStoreAndSemanticClassification, enablePartialTypeChecking = enablePartialTypeChecking, parallelReferenceResolution = enableParallelReferenceResolution, - captureIdentifiersWhenParsing = captureIdentifiersWhenParsing, + captureIdentifiersWhenParsing = enableFastFindReferences, documentSource = (if enableLiveBuffers then DocumentSource.Custom getSource diff --git a/vsintegration/src/FSharp.Editor/Options/EditorOptions.fs b/vsintegration/src/FSharp.Editor/Options/EditorOptions.fs index fae67f36e32..5137bb8596c 100644 --- a/vsintegration/src/FSharp.Editor/Options/EditorOptions.fs +++ b/vsintegration/src/FSharp.Editor/Options/EditorOptions.fs @@ -88,7 +88,6 @@ type LanguageServicePerformanceOptions = KeepAllBackgroundResolutions: bool KeepAllBackgroundSymbolUses: bool EnableBackgroundItemKeyStoreAndSemanticClassification: bool - CaptureIdentifiersWhenParsing: bool } static member Default = @@ -103,7 +102,6 @@ type LanguageServicePerformanceOptions = KeepAllBackgroundResolutions = false KeepAllBackgroundSymbolUses = false EnableBackgroundItemKeyStoreAndSemanticClassification = true - CaptureIdentifiersWhenParsing = true } [] diff --git a/vsintegration/src/FSharp.UIResources/LanguageServicePerformanceOptionControl.xaml b/vsintegration/src/FSharp.UIResources/LanguageServicePerformanceOptionControl.xaml index 074bc7febc8..96b8915b80e 100644 --- a/vsintegration/src/FSharp.UIResources/LanguageServicePerformanceOptionControl.xaml +++ b/vsintegration/src/FSharp.UIResources/LanguageServicePerformanceOptionControl.xaml @@ -85,9 +85,6 @@ - diff --git a/vsintegration/src/FSharp.UIResources/Strings.Designer.cs b/vsintegration/src/FSharp.UIResources/Strings.Designer.cs index 0c8d435f87d..f3490b414a0 100644 --- a/vsintegration/src/FSharp.UIResources/Strings.Designer.cs +++ b/vsintegration/src/FSharp.UIResources/Strings.Designer.cs @@ -105,15 +105,6 @@ public static string Block_Structure { } } - /// - /// Looks up a localized string similar to Capture identifiers while parsing. - /// - public static string Capture_Identifiers_When_Parsing { - get { - return ResourceManager.GetString("Capture_Identifiers_When_Parsing", resourceCulture); - } - } - /// /// Looks up a localized string similar to Code Fixes. /// diff --git a/vsintegration/src/FSharp.UIResources/Strings.resx b/vsintegration/src/FSharp.UIResources/Strings.resx index f0ae6b60146..5bf7260f9cc 100644 --- a/vsintegration/src/FSharp.UIResources/Strings.resx +++ b/vsintegration/src/FSharp.UIResources/Strings.resx @@ -249,9 +249,6 @@ Keep background symbol keys - - Capture identifiers while parsing - Use live (unsaved) buffers for checking (restart required) diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.cs.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.cs.xlf index fc6191d7055..51f813a4903 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.cs.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.cs.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.de.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.de.xlf index c9fe10de771..6aa9e6a6686 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.de.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.de.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.es.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.es.xlf index d2de44fb296..fc73ebc636c 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.es.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.es.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.fr.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.fr.xlf index 03ae77ec939..7e1f700e3ea 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.fr.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.fr.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.it.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.it.xlf index e3b948f6d8f..3b88428daa1 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.it.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.it.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.ja.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.ja.xlf index b0ddce5658d..94126a8eef1 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.ja.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.ja.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.ko.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.ko.xlf index 6d3d8a13a53..e5dd62c28da 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.ko.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.ko.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.pl.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.pl.xlf index b4d2cf145ab..513d580a3b2 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.pl.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.pl.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.pt-BR.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.pt-BR.xlf index ecd4611a48a..86629640ec9 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.pt-BR.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.pt-BR.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.ru.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.ru.xlf index 3fcde247df6..b590dc949a2 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.ru.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.ru.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.tr.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.tr.xlf index b1451e5a571..14a87b14ef3 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.tr.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.tr.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.zh-Hans.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.zh-Hans.xlf index 1dcbb550d8e..132485ea815 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.zh-Hans.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.zh-Hans.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys diff --git a/vsintegration/src/FSharp.UIResources/xlf/Strings.zh-Hant.xlf b/vsintegration/src/FSharp.UIResources/xlf/Strings.zh-Hant.xlf index 8f70454be10..624aefbf6cb 100644 --- a/vsintegration/src/FSharp.UIResources/xlf/Strings.zh-Hant.xlf +++ b/vsintegration/src/FSharp.UIResources/xlf/Strings.zh-Hant.xlf @@ -22,11 +22,6 @@ Background analysis - - Capture identifiers while parsing - Capture identifiers while parsing - - Keep background symbol keys Keep background symbol keys From 4128a3ed9b903e81698c50f8612b036bacb4d5c6 Mon Sep 17 00:00:00 2001 From: 0101 <0101@innit.cz> Date: Fri, 8 Sep 2023 14:42:45 +0200 Subject: [PATCH 2/2] Addressing PR comments --- vsintegration/src/FSharp.Editor/FSharp.Editor.resx | 2 +- .../src/FSharp.Editor/LanguageService/LanguageService.fs | 1 + vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.cs.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.de.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.es.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.fr.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.it.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ja.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ko.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pl.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pt-BR.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ru.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.tr.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hans.xlf | 4 ++-- vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hant.xlf | 4 ++-- 15 files changed, 28 insertions(+), 27 deletions(-) diff --git a/vsintegration/src/FSharp.Editor/FSharp.Editor.resx b/vsintegration/src/FSharp.Editor/FSharp.Editor.resx index 251cd02d780..8db6c37e401 100644 --- a/vsintegration/src/FSharp.Editor/FSharp.Editor.resx +++ b/vsintegration/src/FSharp.Editor/FSharp.Editor.resx @@ -211,7 +211,7 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) diff --git a/vsintegration/src/FSharp.Editor/LanguageService/LanguageService.fs b/vsintegration/src/FSharp.Editor/LanguageService/LanguageService.fs index 5f651b337bc..0d3d4d9e92b 100644 --- a/vsintegration/src/FSharp.Editor/LanguageService/LanguageService.fs +++ b/vsintegration/src/FSharp.Editor/LanguageService/LanguageService.fs @@ -165,6 +165,7 @@ type internal FSharpWorkspaceServiceFactory [] nameof keepAllBackgroundSymbolUses, keepAllBackgroundSymbolUses nameof enableBackgroundItemKeyStoreAndSemanticClassification, enableBackgroundItemKeyStoreAndSemanticClassification + "captureIdentifiersWhenParsing", enableFastFindReferences nameof solutionCrawler, solutionCrawler |], TelemetryThrottlingStrategy.NoThrottling diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.cs.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.cs.xlf index fa6aa6fd4cc..0e588b5cd47 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.cs.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.cs.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - Možnosti výkonu projektu F# a ukládání do mezipaměti; + Možnosti výkonu projektu F# a ukládání do mezipaměti; Povolit odkazy mezi projekty v paměti; Enable_partial_type_checking; Možnosti výkonu IntelliSense; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.de.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.de.xlf index e3cc881854d..b276297b1b0 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.de.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.de.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - F#-Projekt- und Cacheleistungsoptionen; + F#-Projekt- und Cacheleistungsoptionen; Projektübergreifende Verweise im Arbeitsspeicher aktivieren; Enable_partial_type_checking; IntelliSense-Leistungsoptionen; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.es.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.es.xlf index 83074b9f703..f6bdf050f6f 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.es.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.es.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - Opciones de rendimiento de proyectos y caché de F#; + Opciones de rendimiento de proyectos y caché de F#; Habilitar referencias cruzadas de proyecto en memoria; Enable_partial_type_checking; Opciones de rendimiento de IntelliSense; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.fr.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.fr.xlf index 1aea7681a66..f32d4765e14 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.fr.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.fr.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - Options de performances du projet F # et de la mise en cache ; + Options de performances du projet F # et de la mise en cache ; Activer les références de projets croisés en mémoire ; Enable_partial_type_checking ; Options de performances IntelliSense ; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.it.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.it.xlf index 4b74d02fdf8..fcf9afb2bf2 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.it.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.it.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - Opzioni prestazioni progetto F# e memorizzazione nella cache; + Opzioni prestazioni progetto F# e memorizzazione nella cache; Abilita riferimenti tra progetti in memoria; Enable_partial_type_checking; Opzioni prestazioni IntelliSense; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ja.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ja.xlf index 4cfbba3fb49..893c213c3bc 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ja.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ja.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - F# プロジェクトとキャッシュのパフォーマンス オプション; + F# プロジェクトとキャッシュのパフォーマンス オプション; メモリ内のプロジェクト間参照を有効にする。 Enable_partial_type_checking; IntelliSense パフォーマンス オプション; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ko.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ko.xlf index 6eb8c0f3ec1..ab917a9a565 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ko.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ko.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - F# 프로젝트 및 캐싱 성능 옵션; + F# 프로젝트 및 캐싱 성능 옵션; 메모리 내 프로젝트 간 참조 활성화; Enable_partial_type_checking; IntelliSense 성능 옵션; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pl.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pl.xlf index f4d5ad66fa9..9fba8c3fd08 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pl.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pl.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - Opcje wydajności projektów i buforowania języka F#; + Opcje wydajności projektów i buforowania języka F#; Włącz odwołania między projektami w pamięci; Enable_partial_type_checking; Opcje wydajności funkcji IntelliSense; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pt-BR.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pt-BR.xlf index 34d03fefbe9..38c78de1849 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pt-BR.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.pt-BR.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - Opções de desempenho de projeto e cache do F#; + Opções de desempenho de projeto e cache do F#; Habilitar referências de projeto cruzado na memória; Enable_partial_type_checking; Opções de desempenho do IntelliSense; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ru.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ru.xlf index 97331156092..5dee3aa17ce 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ru.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.ru.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - Параметры производительности проекта F# и кэширования; + Параметры производительности проекта F# и кэширования; Включить перекрестные ссылки проекта в памяти; Enable_partial_type_checking; Параметры производительности IntelliSense; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.tr.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.tr.xlf index 52608a483ae..a9a33f92557 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.tr.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.tr.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - F# Proje ve Önbelleğe Alma Performans Seçenekleri; + F# Proje ve Önbelleğe Alma Performans Seçenekleri; Bellek içi çapraz proje başvurularını etkinleştir; Enable_partial_type_checking; IntelliSense Performans Seçenekleri; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hans.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hans.xlf index 207e0a9470b..a8b8ed8bd89 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hans.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hans.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - F# 项目和缓存性能选项; + F# 项目和缓存性能选项; 启用内存中的跨项目引用; 启用部分类型检查; IntelliSense 性能选项; diff --git a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hant.xlf b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hant.xlf index d6cd3abe0e2..1a649a0b03a 100644 --- a/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hant.xlf +++ b/vsintegration/src/FSharp.Editor/xlf/FSharp.Editor.zh-Hant.xlf @@ -167,9 +167,9 @@ Time until stale results are used (in milliseconds); Parallelization (requires restart); Enable parallel type checking with signature files; Enable parallel reference resolution; -Enable fast find references & rename (experimental); +Enable fast find references & rename (restart required); Cache parsing results (experimental) - F# 專案和快取效能選項; + F# 專案和快取效能選項; 啟用記憶體內跨專案參考; Enable_partial_type_checking; IntelliSense 效能選項;