* Makefile.am:
[monodevelop.git] / main / src / addins / CBinding / templates / ConsoleCProject.xpt.xml
blob8b203dad604934c69227b078239396762ca1bada
1 <?xml version="1.0"?>
2 <Template
3         originator   = "Marcos David Marin Amador" 
4     created      = "08/16/2007"
5     lastModified = "08/16/2007">
6         
7         <!-- Template Header -->
8         <TemplateConfiguration>
9                 <_Name>Console Project</_Name>
10                 <_Category>C</_Category>
11                 <Icon>md-project-console|res:c-icon-32.png</Icon>
12                 <LanguageName>C</LanguageName>
13                 <_Description>Creates simple hello world C project.</_Description>
14         </TemplateConfiguration>
15         
16         <!-- Template Content -->
17         <Combine name = "${ProjectName}" directory = ".">
18                 <Project name = "${ProjectName}" directory = "." type = "C/C++">
19                         <Options
20                                 Target = "Bin"
21                                 PauseConsoleOutput = "True"
22                                 CompilerArgs = ""
23                                 LinkerArgs = ""/>
24                         
25                         <Files>
26                                 <File name = "main.c"><![CDATA[// project created on ${Date} at ${Time}
27 #include <stdio.h>
29 int main (int argc, char *argv[])
31         printf ("Hello world!\n");
32         
33         return 0;
35 ]]></File>
36                         </Files>
37                 </Project>
38         </Combine>
39 </Template>