Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core/Impl/ContentType/IFileNameToContentTypeMetadata.cs')
-rw-r--r--src/Core/Impl/ContentType/IFileNameToContentTypeMetadata.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/Core/Impl/ContentType/IFileNameToContentTypeMetadata.cs b/src/Core/Impl/ContentType/IFileNameToContentTypeMetadata.cs
deleted file mode 100644
index 48ec87a..0000000
--- a/src/Core/Impl/ContentType/IFileNameToContentTypeMetadata.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License. See License.txt in the project root for license information.
-//
-// This file contain implementations details that are subject to change without notice.
-// Use at your own risk.
-//
-namespace Microsoft.VisualStudio.Utilities.Implementation
-{
- using System;
- using System.Collections.Generic;
-
- public interface IFileNameToContentTypeMetadata
- {
- string FileName { get; }
- IEnumerable<string> ContentTypes { get; }
- }
-}
-