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: f2e90fd35952dcd81034de3f42d91eca7d7c664d (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
38
39
<?xml version="1.0"?>
<Template originator   = "Jeffrey Stedfast"
          created      = "04/03/2012"
          lastModified = "02/26/2014">
	
	<!-- Template Header -->
	<TemplateConfiguration>
		<_Name>Portable Library</_Name>
		<Category>multiplat/library/general</Category>
		<Icon>md-crossplatform-pcl-project</Icon>
		<Image id="md-crossplatform-pcl-project" />
		<LanguageName>C#</LanguageName>
		<_Description>Creates a C# library that can be used in Windows, Mac, Silverlight, Windows Phone, Xamarin.iOS and Xamarin.Android.</_Description>
		<DefaultFilename>PortableLibrary</DefaultFilename>
		<GroupId>md-project-portable-library</GroupId>
	</TemplateConfiguration>
	
	<!-- Actions -->
	<Actions>
		<Open filename = "MyClass.cs"/>
	</Actions>
	
	<!-- Template Content -->
	<Combine name = "${ProjectName}" directory = ".">
		<Options>
			<StartupProject>${ProjectName}</StartupProject>
		</Options>
		
		<Project name = "${ProjectName}" directory = "." type="C#PortableLibrary">
			<Options Target = "Library" TargetFrameworkVersion = ".NETPortable,Version=v4.5,Profile=Profile78"/>
			<References>
			</References>
			<Files>
				<FileTemplateReference TemplateID="EmptyClass" name="MyClass.cs" />
				<FileTemplateReference TemplateID="CSharpAssemblyInfo" name="AssemblyInfo.cs" />
			</Files>
		</Project>
	</Combine>
</Template>