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

MvcController.xft.xml « Templates « MonoDevelop.AspNetCore « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80890c85aaabe866fc840d2b5be13c39c924d949 (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
<?xml version="1.0"?>
<Template
	originator="Matt Ward"
	created="2017/05/01"
	lastModified="2017/05/01">

	<TemplateConfiguration>
		<_Name>MVC Controller Class</_Name>
		<Icon>md-html-file-icon</Icon>
		<_Category>ASP.NET Core</_Category>
		<LanguageName>C#</LanguageName>
		<DefaultFilename>HomeController</DefaultFilename>
		<_Description><![CDATA[Creates an MVC Application Controller class.

The ASP.NET MVC Framework requires Controller names to be suffixed with "Controller".]]></_Description>
	</TemplateConfiguration>

	<Conditions>
		<AspNetCore />
	</Conditions>
	
	<!-- Template Content -->
	<TemplateFiles>
		<File name="${Name}.cs" src="MvcControllerTemplate.cs" />
	</TemplateFiles>
</Template>