소스 검색

Use C# highlighting for Cake scripts

Pascal Berger 6 년 전
부모
커밋
0a2434505e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/csharp/csharp.contribution.ts

+ 1 - 1
src/csharp/csharp.contribution.ts

@@ -11,7 +11,7 @@ const _monaco: typeof monaco = (typeof monaco === 'undefined' ? (<any>self).mona
 
 registerLanguage({
 	id: 'csharp',
-	extensions: ['.cs', '.csx'],
+	extensions: ['.cs', '.csx', '.cake'],
 	aliases: ['C#', 'csharp'],
 	loader: () => _monaco.Promise.wrap(import('./csharp'))
 });