diff --git a/src/EditorFeatures/Core/Implementation/Workspaces/EditorInfoBarService.cs b/src/EditorFeatures/Core/Implementation/InfoBar/EditorInfoBarService.cs similarity index 68% rename from src/EditorFeatures/Core/Implementation/Workspaces/EditorInfoBarService.cs rename to src/EditorFeatures/Core/Implementation/InfoBar/EditorInfoBarService.cs index 5c9821253091238743b7ce23b9816d1b20d42a04..bd8a0567fd41bf2d1d276f47fd1a68e251812225 100644 --- a/src/EditorFeatures/Core/Implementation/Workspaces/EditorInfoBarService.cs +++ b/src/EditorFeatures/Core/Implementation/InfoBar/EditorInfoBarService.cs @@ -1,13 +1,12 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +// 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 Microsoft.CodeAnalysis.Extensions; +using Microsoft.CodeAnalysis.Host.Mef; using Microsoft.CodeAnalysis.Internal.Log; namespace Microsoft.CodeAnalysis.Editor.Implementation.Workspaces { + [ExportWorkspaceService(typeof(IInfoBarService))] internal class EditorInfoBarService : IInfoBarService { public void ShowInfoBarInActiveView(string message, params InfoBarUI[] items)