提交 f519dc75 编写于 作者: A Andrew Casey

Remove unused file.

上级 ed946738
// 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.Diagnostics;
namespace Microsoft.VisualStudio.InteractiveWindow.Shell
{
internal static class SpecializedCollections
{
internal static class Empty
{
internal class Array<T>
{
public static readonly T[] Instance = Array.Empty<T>();
}
}
public static T[] EmptyArray<T>()
{
return Empty.Array<T>.Instance;
}
}
internal static class ExceptionUtilities
{
[DebuggerDisplay("Unreachable")]
public static Exception Unreachable
{
get
{
Debug.Fail("This code path should not be reachable");
return new InvalidOperationException();
}
}
}
}
......@@ -133,7 +133,6 @@
<Compile Include="IVsInteractiveWindowOleCommandTargetProvider.cs" />
<Compile Include="MenuIds.cs" />
<Compile Include="ProvideInteractiveWindowAttribute.cs" />
<Compile Include="Utils.cs" />
<Compile Include="VsInteractiveWindow.cs" />
<Compile Include="VsInteractiveWindowCommandFilter.cs" />
<Compile Include="VsInteractiveWindowExtensions.cs" />
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册