Skip to content

Commit ec081eb

Browse files
authored
Merge branch 'main' into parallel-opt
2 parents 0cbe37b + 38e7655 commit ec081eb

File tree

4 files changed

+10
-15
lines changed

4 files changed

+10
-15
lines changed

eng/Version.Details.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Dependencies>
3-
<Source Uri="https://github.com/dotnet/dotnet" Mapping="fsharp" Sha="64d877a07af8c020fe9da6e721bc2258894f31ee" BarId="286279" />
3+
<Source Uri="https://github.com/dotnet/dotnet" Mapping="fsharp" Sha="01abb3ec5c4cbffec5b33e02156bd3d2a8913b04" BarId="286825" />
44
<ProductDependencies>
55
<Dependency Name="Microsoft.Build" Version="18.1.0-preview-25511-01">
66
<Uri>https://github.com/dotnet/msbuild</Uri>

eng/Versions.props

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,10 @@
9999
<VisualStudioShellProjectsPackages>18.0.2077-preview.1</VisualStudioShellProjectsPackages>
100100
<MicrosoftVisualStudioThreadingPackagesVersion>18.0.5</MicrosoftVisualStudioThreadingPackagesVersion>
101101

102-
<!-- Roslyn packages -->
103-
<MicrosoftCodeAnalysisEditorFeaturesTextVersion>5.0.0-2.25480.7</MicrosoftCodeAnalysisEditorFeaturesTextVersion>
104-
<MicrosoftCodeAnalysisExternalAccessFSharpVersion>5.0.0-2.25480.7</MicrosoftCodeAnalysisExternalAccessFSharpVersion>
105-
<MicrosoftCodeAnalysisVersion>5.0.0-2.25480.7</MicrosoftCodeAnalysisVersion>
106-
<MicrosoftCodeAnalysisCSharpVersion>5.0.0-2.25480.7</MicrosoftCodeAnalysisCSharpVersion>
107-
<MicrosoftVisualStudioLanguageServicesVersion>5.0.0-2.25480.7</MicrosoftVisualStudioLanguageServicesVersion>
102+
<!-- Roslyn packages. Rest is managed by maestro bot and is in the imported .Details.props file -->
108103
<MicrosoftCodeAnalysisTestResourcesProprietaryVersion>2.0.28</MicrosoftCodeAnalysisTestResourcesProprietaryVersion>
109-
<!-- Roslyn for when we need to compile C# in tests. .dll hell caused by vstest makes newer version fail at runtime -->
110-
<RoslynForTestingButNotForVSLayer>4.14.0</RoslynForTestingButNotForVSLayer>
104+
<!-- Roslyn for when we need to compile C# in tests. .dll hell caused by vstest makes newer version fail at runtime -->
105+
<RoslynForTestingButNotForVSLayer>4.14.0</RoslynForTestingButNotForVSLayer>
111106
<!-- -->
112107
<!-- Visual Studio Shell packages -->
113108
<MicrosoftVisualStudioInteropVersion>$(MicrosoftVisualStudioShellPackagesVersion)</MicrosoftVisualStudioInteropVersion>

src/Compiler/Service/ServiceAssemblyContent.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ open FSharp.Compiler.Symbols
1616
open FSharp.Compiler.Syntax
1717

1818
module Utils =
19-
let replaceLastIdentToDisplayName idents (displayName: string) =
19+
let replaceLastIdentToDisplayName (idents: string array) (displayName: string) =
2020
match idents |> Array.tryFindIndexBack (fun i -> displayName.StartsWith(i, System.StringComparison.Ordinal)) with
2121
| Some x when x = idents.Length - 1 -> idents |> Array.replace (idents.Length - 1) displayName
2222
| Some x ->

src/Compiler/Utilities/illib.fs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,22 +96,22 @@ module internal PervasiveAutoOpens =
9696

9797
type String with
9898

99-
member inline x.StartsWithOrdinal value =
99+
member inline x.StartsWithOrdinal(value: string) =
100100
x.StartsWith(value, StringComparison.Ordinal)
101101

102-
member inline x.EndsWithOrdinal value =
102+
member inline x.EndsWithOrdinal(value: string) =
103103
x.EndsWith(value, StringComparison.Ordinal)
104104

105-
member inline x.EndsWithOrdinalIgnoreCase value =
105+
member inline x.EndsWithOrdinalIgnoreCase(value: string) =
106106
x.EndsWith(value, StringComparison.OrdinalIgnoreCase)
107107

108108
member inline x.IndexOfOrdinal(value: string) =
109109
x.IndexOf(value, StringComparison.Ordinal)
110110

111-
member inline x.IndexOfOrdinal(value, startIndex) =
111+
member inline x.IndexOfOrdinal(value: string, startIndex) =
112112
x.IndexOf(value, startIndex, StringComparison.Ordinal)
113113

114-
member inline x.IndexOfOrdinal(value, startIndex, count) =
114+
member inline x.IndexOfOrdinal(value: string, startIndex, count) =
115115
x.IndexOf(value, startIndex, count, StringComparison.Ordinal)
116116

117117
/// Get an initialization hole

0 commit comments

Comments
 (0)