In Visual Studio 2019, I have imported a snippet using Tools -> Code Snippets Manager per the Microsoft Walkthrough documentation.
I can see it in Code Snippets Manager.
Here is the content of my snippet.
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>switch</Title>
<Author>Me</Author>
<Description>Inserts a switch case.</Description>
<Shortcut>cmswitch</Shortcut>
</Header>
<Snippet>
<Code Language="JavaScript">
<![CDATA[ switch ($switch_on$) {case 0: break; default:}]]>
</Code>
<Declarations>
<Literal>
<ID>switch_on</ID>
<ToolTip>Enter the switch case criteria.</ToolTip>
<Default>switch_on</Default>
</Literal>
</Declarations>
</Snippet>
</CodeSnippet>
</CodeSnippets>
When I try to use the snippet by typing cm in a basic .cshtml file, I get nothing.
Any idea why my snippet is not showing up in intellisense.


