未验证 提交 6af2a899 编写于 作者: B Brett V. Forsgren 提交者: GitHub

update roslyn package to account for an API change (#5800)

上级 9da2b33b
......@@ -17,6 +17,7 @@
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="myget.org roslyn" value="https://dotnet.myget.org/F/roslyn/api/v3/index.json" />
<add key="myget.org symreader-converter" value="https://dotnet.myget.org/F/symreader-converter/api/v3/index.json" />
<add key="myget.org roslyn-concord" value="https://myget.org/F/roslyn_concord/api/v3/index.json" />
</packageSources>
</configuration>
2.11.0-beta1-63119-03
2.11.0-beta1-63418-03-8b75c84d
......@@ -4364,25 +4364,25 @@ type internal SR private() =
/// (Originally from ..\FSComp.txt:1445)
static member tastCantTakeAddressOfExpression() = (3237, GetStringFunc("tastCantTakeAddressOfExpression",",,,") )
/// Cannot call the extension member as it requires the value to be mutable or a byref type due to the extending type being used as a byref.
/// (Originally from ..\FSComp.txt:1443)
/// (Originally from ..\FSComp.txt:1446)
static member tcCannotCallExtensionMemberInrefToByref() = (3238, GetStringFunc("tcCannotCallExtensionMemberInrefToByref",",,,") )
/// Byref types are not allowed to have optional type extensions.
/// (Originally from ..\FSComp.txt:1444)
/// (Originally from ..\FSComp.txt:1447)
static member tcByrefsMayNotHaveTypeExtensions() = (3239, GetStringFunc("tcByrefsMayNotHaveTypeExtensions",",,,") )
/// Cannot call the byref extension method '%s. The first parameter requires the value to be mutable or a non-readonly byref type.
/// (Originally from ..\FSComp.txt:1445)
/// (Originally from ..\FSComp.txt:1448)
static member tcCannotCallExtensionMethodInrefToByref(a0 : System.String) = (3240, GetStringFunc("tcCannotCallExtensionMethodInrefToByref",",,,%s,,,") a0)
/// Cannot partially apply the extension method '%s' because the first parameter is a byref type.
/// (Originally from ..\FSComp.txt:1446)
/// (Originally from ..\FSComp.txt:1449)
static member tcCannotPartiallyApplyExtensionMethodForByref(a0 : System.String) = (3241, GetStringFunc("tcCannotPartiallyApplyExtensionMethodForByref",",,,%s,,,") a0)
/// This type does not inherit Attribute, it will not work correctly with other .NET languages.
/// (Originally from ..\FSComp.txt:1447)
/// (Originally from ..\FSComp.txt:1450)
static member tcTypeDoesNotInheritAttribute() = (3242, GetStringFunc("tcTypeDoesNotInheritAttribute",",,,") )
/// The parameter '%s' has an invalid type '%s'. This is not permitted by the rules of Common IL.
/// (Originally from ..\FSComp.txt:1448)
/// (Originally from ..\FSComp.txt:1451)
static member chkInvalidFunctionParameterType(a0 : System.String, a1 : System.String) = (3300, GetStringFunc("chkInvalidFunctionParameterType",",,,%s,,,%s,,,") a0 a1)
/// The function or method has an invalid return type '%s'. This is not permitted by the rules of Common IL.
/// (Originally from ..\FSComp.txt:1449)
/// (Originally from ..\FSComp.txt:1452)
static member chkInvalidFunctionReturnType(a0 : System.String) = (3301, GetStringFunc("chkInvalidFunctionReturnType",",,,%s,,,") a0)
/// Call this method once to validate that all known resources are valid; throws if not
......
......@@ -245,7 +245,7 @@ type internal FSharpNavigateToSearchService
| _ -> NavigateToMatchKind.Regular
interface INavigateToSearchService_RemoveInterfaceAboveAndRenameThisAfterInternalsVisibleToUsersUpdate with
member __.SearchProjectAsync(project, searchPattern, kinds, cancellationToken) : Task<ImmutableArray<INavigateToSearchResult>> =
member __.SearchProjectAsync(project, _priorityDocuments, searchPattern, kinds, cancellationToken) : Task<ImmutableArray<INavigateToSearchResult>> =
asyncMaybe {
let! parsingOptions, _site, _options = projectInfoManager.TryGetOptionsForProject(project.Id)
let! items =
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册