Skip to content

Commit

Permalink
SASS: Corrected the file extension
Browse files Browse the repository at this point in the history
  • Loading branch information
madskristensen committed Jan 5, 2014
1 parent 36042d1 commit fa9617f
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,18 @@

namespace MadsKristensen.EditorExtensions
{
/// <summary>
/// Exports the Sass content type and file extension
/// </summary>
public class SassContentTypeDefinition
{
public const string SassContentType = "Sass";

/// <summary>
/// Exports the Sass content type
/// </summary>
[Export(typeof(ContentTypeDefinition))]
[Name(SassContentType)]
[BaseDefinition("CSS")]
public ContentTypeDefinition ISassContentType { get; set; }

[Export(typeof(FileExtensionToContentTypeDefinition))]
[ContentType(SassContentType)]
[FileExtension(".sass")]
[FileExtension(".scss")]
public FileExtensionToContentTypeDefinition SassFileExtension { get; set; }
}
}

0 comments on commit fa9617f

Please sign in to comment.