public WpfMSBuildSuggestedAction(PreviewChangesService previewService, ITextView textView, ITextBuffer buffer, MSBuildCodeFix fix)
 {
     this.previewService = previewService;
     this.textView       = textView;
     this.buffer         = buffer;
     this.fix            = fix;
 }
 public ISuggestedAction CreateSuggestedAction(PreviewChangesService previewService, ITextView textView, ITextBuffer buffer, MSBuildCodeFix fix)
 => new WpfMSBuildSuggestedAction(previewService, textView, buffer, fix);