Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/addins/CBinding/templates/ConsoleCProject.xpt.xml')
-rw-r--r--main/src/addins/CBinding/templates/ConsoleCProject.xpt.xml41
1 files changed, 0 insertions, 41 deletions
diff --git a/main/src/addins/CBinding/templates/ConsoleCProject.xpt.xml b/main/src/addins/CBinding/templates/ConsoleCProject.xpt.xml
deleted file mode 100644
index 7145e507a3..0000000000
--- a/main/src/addins/CBinding/templates/ConsoleCProject.xpt.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0"?>
-<Template
- originator = "Marcos David Marin Amador"
- created = "08/16/2007"
- lastModified = "08/16/2007">
-
- <!-- Template Header -->
- <TemplateConfiguration>
- <_Name>Console Project</_Name>
- <Category>other/misc/c</Category>
- <Icon>md-project-console</Icon>
- <Image id="md-console-project" />
- <LanguageName>C</LanguageName>
- <_Description>Creates simple hello world C project.</_Description>
- <DefaultFilename>ConsoleCProject</DefaultFilename>
- <GroupId>md-project-console</GroupId>
- </TemplateConfiguration>
-
- <!-- Template Content -->
- <Combine name = "${ProjectName}" directory = ".">
- <Project name = "${ProjectName}" directory = "." type = "C/C++">
- <Options
- Target = "Bin"
- ExternalConsole = "True"
- CompilerArgs = ""
- LinkerArgs = ""/>
-
- <Files>
- <File name = "main.c" AddStandardHeader="True"><![CDATA[#include <stdio.h>
-
-int main (int argc, char *argv[])
-{
- printf ("Hello world!\n");
-
- return 0;
-}
-]]></File>
- </Files>
- </Project>
- </Combine>
-</Template>