diff options
Diffstat (limited to 'tools/Contracts/Languages/CSharp/Code Contract Snippets/contractassert.snippet')
-rw-r--r-- | tools/Contracts/Languages/CSharp/Code Contract Snippets/contractassert.snippet | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/Contracts/Languages/CSharp/Code Contract Snippets/contractassert.snippet b/tools/Contracts/Languages/CSharp/Code Contract Snippets/contractassert.snippet deleted file mode 100644 index 7a47503..0000000 --- a/tools/Contracts/Languages/CSharp/Code Contract Snippets/contractassert.snippet +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> - <CodeSnippet Format="1.0.0"> - <Header> - <SnippetTypes> - <SnippetType>Expansion</SnippetType> - </SnippetTypes> - <Title>Contract.Assert</Title> - <Shortcut>cca</Shortcut> - <Description>Emits a 'Contract.Assert' clause</Description> - <Author>MaF</Author> - </Header> - <Snippet> - <Imports> - <Import> - <Namespace>System.Diagnostics.Contracts</Namespace> - </Import> - </Imports> - <Declarations> - <Object Editable="true"> - <ID>condition</ID> - <ToolTip>condition that must be true</ToolTip> - <Default>false</Default> - <Function> - </Function> - </Object> - </Declarations> - <Code Language="CSharp" Kind="method body"><![CDATA[Contract.Assert($condition$);$end$]]></Code> - </Snippet> - </CodeSnippet> -</CodeSnippets> |