I see the c++ code snippets I installed using the Code Snippet Manger. This same snippet works for VS 2012.
I noticed even the built in snippets don't work for 2014 in cpp.
The C# code snippets work.
My question is:
Is this a known issue and will cpp snippets work when VS 2014 is released?
Here is a similar snippet
<?xml version="1.0" encoding="utf-8"?><CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"><!--Test snippet --><CodeSnippet Format="1.0.0"><Header><SnippetTypes><SnippetType>Expansion</SnippetType></SnippetTypes><Title>Expansion test</Title><Author>Paul Baxter</Author><Description>This is a test expansion</Description><HelpUrl /><Shortcut>tstexpand</Shortcut></Header><Snippet><Declarations><Literal Editable="true"><ID>parameter</ID><ToolTip>functionparameter</ToolTip><Default>param1</Default><Function /></Literal></Declarations><Code Language="cpp"><![CDATA[int $parameter$; foo($parameter$); ]]></Code></Snippet></CodeSnippet></CodeSnippets>
Thanks, Paul