Gu.Localization
Gu.Localization copied to clipboard
Bump Microsoft.CodeAnalysis.CSharp.Workspaces from 4.5.0 to 4.8.0
Bumps Microsoft.CodeAnalysis.CSharp.Workspaces from 4.5.0 to 4.8.0.
Release notes
Sourced from Microsoft.CodeAnalysis.CSharp.Workspaces's releases.
.NET 6.0.1
.NET 5.0.4
.NET 5.0.2
Release Notes Install Instructions
Repos
Changelog
Sourced from Microsoft.CodeAnalysis.CSharp.Workspaces's changelog.
Version 4.5.0
SymbolDisplayFormat.CSharpErrorMessageFormat
andCSharpShortErrorMessageFormat
now include parameter names by default if used on a standaloneIParameterSymbol
. For example, parameterp
invoid M(ref int p)
was previously formatted as"ref int"
and now it is formatted as"ref int p"
.Version 4.7.0
SymbolDisplayFormat
includes parameter name when invoked onIParameterSymbol
All
SymbolDisplayFormat
s (predefined and user-created) now include parameter names by default if used on a standaloneIParameterSymbol
for consistency with predefined formats (see the breaking change for version 4.5.0 above).Changed
IncrementalStepRunReason
when a modified input produced a new output
IncrementalGeneratorRunStep.Outputs
previously containedIncrementalStepRunReason.Modified
asReason
when the input to the step was modified in a way that produced a new output. Now the reason will be reported more accurately asIncrementalStepRunReason.New
.Version 4.8.0
Changed
Assembly.Location
behavior in non-WindowsThe value of
Assembly.Location
previously held the location on disk where an analyzer or source generator was loaded from. This could be either the original location or the shadow copy location. In 4.8 this will be""
in certain cases when running on non Windows platforms. This is due the compiler server loading assemblies usingAssemblyLoadContext.LoadFromStream
instead of loading from disk.This could already happen in other load scenarios but this change moves it into mainline build scenarios.
Deprecation warning for SyntaxNode serialization
The ability to serialize/deserialize a SyntaxNode to/from a Stream has been deprecated. The code for this still exists in Roslyn, but attempting to call the APIs to perform these functions will result in 'Obsolete' warnings being reported. A future version of Roslyn will remove this functionality entirely. This functionality could only work for a host that wrote out the nodes to a stream, and later read it back in within the same process instance. It could not be used to communicate across processes, or for persisting nodes to disk to be read in at a later time by a new host sessions. This functionality originally existed for the days when Roslyn was hosted in 32bit processes with limited address space. That is no longer a mainline supported scenario. Clients can get similar functionality by persisting the text of the node, and parsing it back out when needed.
Version 4.9.0
Obsoletion and removal of SyntaxNode serialization.
Continuation of the deprecation that happened in 4.8.0 (see information above). In 4.9.0 this functionality is now entirely removed, and will issue both an obsoletion error, and will throw at runtime if the APIs are used.
Changes in
Microsoft.CodeAnalysis.Emit.EmitBaseline.CreateInitialBaseline
methodA new required parameter
Compilation
has been added. Existing overloads without this parameter no longer work and throwNotSupportedException
.Changes in
Microsoft.CodeAnalysis.Emit.SemanticEdit
constructorsThe value of
preserveLocalVariables
passed to the constructors is no longer used.
Commits
- See full diff in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.