From fa9617fd05f3833493025ce5039c83cbc86a8e48 Mon Sep 17 00:00:00 2001 From: Mads Kristensen Date: Sat, 4 Jan 2014 17:22:56 -0800 Subject: [PATCH] SASS: Corrected the file extension --- .../Classifications/SASS/SassContentTypeDefinition.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/EditorExtensions/Classifications/SASS/SassContentTypeDefinition.cs b/EditorExtensions/Classifications/SASS/SassContentTypeDefinition.cs index fcd4d5e46..36861aada 100644 --- a/EditorExtensions/Classifications/SASS/SassContentTypeDefinition.cs +++ b/EditorExtensions/Classifications/SASS/SassContentTypeDefinition.cs @@ -3,16 +3,10 @@ namespace MadsKristensen.EditorExtensions { - /// - /// Exports the Sass content type and file extension - /// public class SassContentTypeDefinition { public const string SassContentType = "Sass"; - /// - /// Exports the Sass content type - /// [Export(typeof(ContentTypeDefinition))] [Name(SassContentType)] [BaseDefinition("CSS")] @@ -20,7 +14,7 @@ public class SassContentTypeDefinition [Export(typeof(FileExtensionToContentTypeDefinition))] [ContentType(SassContentType)] - [FileExtension(".sass")] + [FileExtension(".scss")] public FileExtensionToContentTypeDefinition SassFileExtension { get; set; } } }