Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/HL3Snippets/HL3.License.snippet @ 5061

Last change on this file since 5061 was 4761, checked in by abeham, 13 years ago

#567

  • Added snippets to source control
File size: 1.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
3  <CodeSnippet Format="1.0.0">
4    <Header>
5      <Title>HL3.License</Title>
6      <Author>Andreas Beham</Author>
7      <Description>Inserts the GPL license</Description>
8      <HelpUrl>https://dev.heuristiclab.com/trac/hl/core/wiki/DevelopersCodeSnippets</HelpUrl>
9      <SnippetTypes>
10        <SnippetType>Expansion</SnippetType>
11      </SnippetTypes>
12      <Keywords />
13      <Shortcut>hl3License</Shortcut>
14    </Header>
15    <Snippet>
16      <References />
17      <Imports />
18      <Declarations>
19        <Literal Editable="true">
20          <ID>year</ID>
21          <Type />
22          <ToolTip>Enter the actual year</ToolTip>
23          <Default>2010</Default>
24          <Function></Function>
25        </Literal>
26      </Declarations>
27      <Code Language="csharp" Kind="" Delimiter="$"><![CDATA[#region License Information
28/* HeuristicLab
29 * Copyright (C) 2002-$year$ Heuristic and Evolutionary Algorithms Laboratory (HEAL)
30 *
31 * This file is part of HeuristicLab.
32 *
33 * HeuristicLab is free software: you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation, either version 3 of the License, or
36 * (at your option) any later version.
37 *
38 * HeuristicLab is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
41 * GNU General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License
44 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
45 */
46#endregion]]></Code>
47    </Snippet>
48  </CodeSnippet>
49</CodeSnippets>
Note: See TracBrowser for help on using the repository browser.