Add more extensions to built-in PowerShell support

This change adds the .pssc and .psrc file extensions to the built-in
PowerShell support.
This commit is contained in:
David Wilson 2015-11-19 14:05:46 -08:00
parent 321ccd5a32
commit 6d3609f90b

View file

@ -6,7 +6,7 @@
"contributes": {
"languages": [{
"id": "powershell",
"extensions": [ ".ps1", ".psm1", ".psd1" ],
"extensions": [ ".ps1", ".psm1", ".psd1", ".pssc", ".psrc" ],
"aliases": [ "PowerShell", "powershell", "ps", "ps1" ],
"configuration": "./powershell.configuration.json"
}],