mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 01:12:58 +00:00
7a5bca9faf
it should avoid to have "warning XXX: No license field" during yarn build Signed-off-by: Aurélien Pupier <apupier@redhat.com>
43 lines
No EOL
907 B
JSON
43 lines
No EOL
907 B
JSON
{
|
|
"name": "csharp",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "0.10.x"
|
|
},
|
|
"scripts": {
|
|
"update-grammar": "node ../../build/npm/update-grammar.js dotnet/csharp-tmLanguage grammars/csharp.tmLanguage ./syntaxes/csharp.tmLanguage.json"
|
|
},
|
|
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "csharp",
|
|
"extensions": [
|
|
".cs",
|
|
".csx",
|
|
".cake"
|
|
],
|
|
"aliases": [
|
|
"C#",
|
|
"csharp"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "csharp",
|
|
"scopeName": "source.cs",
|
|
"path": "./syntaxes/csharp.tmLanguage.json"
|
|
}
|
|
],
|
|
"snippets": [{
|
|
"language": "csharp",
|
|
"path": "./snippets/csharp.json"
|
|
}]
|
|
}
|
|
} |