vscode-csproj icon indicating copy to clipboard operation
vscode-csproj copied to clipboard

Should allow regex testing on extensions

Open raix opened this issue 8 years ago • 1 comments

When using this together with jest we want*.snap and *.test.(j|t)sx? to be type "None"

{
  // ...
  "\\.test\\.(t|j)sx?$|\\.snap$": "None"
}

raix avatar Apr 24 '18 10:04 raix

Try setting "csproj.itemType".

"csproj.itemType": {
 "*": "Content",
 ".ts": "TypeScriptCompile",
 ".snap": "None"
}

azz avatar Apr 24 '18 10:04 azz