From 014acbe5dc8e66315b6d9c5ed6934b8b4b8c6000 Mon Sep 17 00:00:00 2001 From: CyrusNajmabadi Date: Thu, 9 Feb 2017 14:01:18 -0800 Subject: [PATCH] AddParameterwork --- .../AbstractAddParameterCodeFixProvider.cs | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/Features/Core/Portable/AddParameter/AbstractAddParameterCodeFixProvider.cs diff --git a/src/Features/Core/Portable/AddParameter/AbstractAddParameterCodeFixProvider.cs b/src/Features/Core/Portable/AddParameter/AbstractAddParameterCodeFixProvider.cs new file mode 100644 index 00000000000..2d94432ac5a --- /dev/null +++ b/src/Features/Core/Portable/AddParameter/AbstractAddParameterCodeFixProvider.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Collections.Immutable; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.CodeAnalysis.CodeFixes; + +namespace Microsoft.CodeAnalysis.AddParameter +{ + internal abstract class AbstractAddParameterCodeFixProvider : CodeFixProvider + { + public override ImmutableArray FixableDiagnosticIds => throw new NotImplementedException(); + + public override Task RegisterCodeFixesAsync(CodeFixContext context) + { + throw new NotImplementedException(); + } + } +} \ No newline at end of file -- GitLab