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

PortableLibrary.xpt.xml « templates « CSharpBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a26a237dce8d13c029ee94282ce1520c0a994741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0"?>
<Template originator   = "Jeffrey Stedfast"
          created      = "04/03/2012"
          lastModified = "02/26/2014">
	
	<!-- Template Header -->
	<TemplateConfiguration>
		<_Name>Portable Library</_Name>
		<_Category>C#</_Category>
		<Icon>md-project-library</Icon>
		<LanguageName>C#</LanguageName>
		<_Description>Creates a C# library that can be used in Windows, Silverlight, Windows Phone, MonoTouch and Mono for Android.</_Description>
		<DefaultFilename>PortableLibrary</DefaultFilename>
	</TemplateConfiguration>
	
	<!-- Actions -->
	<Actions>
		<Open filename = "MyClass.cs"/>
	</Actions>
	
	<!-- Template Content -->
	<Combine name = "${ProjectName}" directory = ".">
		<Options>
			<StartupProject>${ProjectName}</StartupProject>
		</Options>
		
		<Project name = "${ProjectName}" directory = ".">
			<Options Target = "Library" TargetFrameworkVersion = ".NETPortable,Version=v4.5,Profile=Profile78" flavorIds="{786C830F-07A1-408B-BD7F-6EE04809D6DB}"/>
			<References>
			</References>
			<Files>
				<FileTemplateReference TemplateID="EmptyClass" name="MyClass.cs" />
				<FileTemplateReference TemplateID="CSharpAssemblyInfo" name="AssemblyInfo.cs" />
			</Files>
		</Project>
	</Combine>
</Template>