main
1<?xml version="1.0"?>
2<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3 <CodeSnippet Format="1.0.0">
4 <Header>
5 <Title>NAnt task</Title>
6 <Author>MbUnit</Author>
7 <Description>Expansion snippet for a NAnt task</Description>
8 <Shortcut>nant</Shortcut>
9 <SnippetTypes>
10 <SnippetType>Expansion</SnippetType>
11 </SnippetTypes>
12 </Header>
13 <Snippet>
14 <Declarations>
15 <Literal>
16 <ID>name</ID>
17 <ToolTip>Fixture name</ToolTip>
18 <Default>My</Default>
19 </Literal>
20 </Declarations>
21 <Code Language="XML"><![CDATA[<!-- MbUnit NAnt task definition -->
22<mbunit>
23 <formatter type="Html"
24 userfile="true"
25 outputdir=".."
26 />
27 <test>
28 $end$
29 </test>
30</mbunit>
31 ]]></Code>
32 </Snippet>
33 </CodeSnippet>
34</CodeSnippets>