I’m trying to create code snippets but not have been unable to access them from Visual Studio.
I added the folder
C:\Documents and Settings\....\Code Snippets\Visual APL\My Code Snippets
and created a snippet file by taking a C# snippet and modifying it. See below.
What am I missing?
Can we have a web cast segment on creating/modifying/using snippets?
In the snippet text below I’ve tried
Code Language= “APL” and “APLNext” and “VisualAPL”.
When I try to insert a snippet into the code from Visual Studio I get the message “No snippets available”. . . .
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets
xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>APL references</Title>
<Description>Code snippet for setting APL references</Description>
<Author>Kreg Corporation</Author>
</Header>
<Snippet>
<Code Language="APL">
<![CDATA[refbyfile @"C:\Program Files\AplNext\AplNext\AplNext.Apl.LegacyOps.dll"
using APLNext.Legacy.NativeFileSystem
using APLNext.Legacy.ShareFileSystem
refbyfile @"C:\Program Files\AplNext\AplNext\APLNext.Qwi.dll"
using APLNext.Qwi]]>
</Code>
</Snippet>
</CodeSnippet>