RemoteHostCrashInfoBar.cs 616 字节
Newer Older
J
Jonathon Marolf 已提交
1 2 3
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
H
Heejae Chang 已提交
4

5
using System;
H
Heejae Chang 已提交
6
using Microsoft.CodeAnalysis;
7
using Microsoft.CodeAnalysis.Host;
H
Heejae Chang 已提交
8 9 10 11 12 13 14 15

namespace Microsoft.VisualStudio.LanguageServices.Remote
{
    /// <summary>
    /// Mock for test framework
    /// </summary>
    internal static class RemoteHostCrashInfoBar
    {
16
        public static void ShowInfoBar(HostWorkspaceServices services, Exception ex = null)
H
Heejae Chang 已提交
17 18 19 20 21
        {
            // do nothing
        }
    }
}