diff --git a/src/Workspaces/Core/Portable/CodeActions/Operations/ApplyChangesOperation.cs b/src/Workspaces/Core/Portable/CodeActions/Operations/ApplyChangesOperation.cs index bd471a1aa0cb8eef02719435e73cce61d1c9f073..5ceb02d09ce052fe497e7b040dfe2f924c6b1197 100644 --- a/src/Workspaces/Core/Portable/CodeActions/Operations/ApplyChangesOperation.cs +++ b/src/Workspaces/Core/Portable/CodeActions/Operations/ApplyChangesOperation.cs @@ -8,6 +8,19 @@ namespace Microsoft.CodeAnalysis.CodeActions { /// /// A for applying solution changes to a workspace. + /// may return at most one + /// . Hosts may provide custom handling for + /// s, but if a requires custom + /// host behavior not supported by a single , then instead: + /// + /// Implement a custom and s + /// Do not return any from + /// Directly apply any workspace edits + /// Handle any custom host behavior + /// Produce a preview for + /// by creating a custom or returning a single + /// to use the built-in preview mechanism + /// /// public sealed class ApplyChangesOperation : CodeActionOperation {