You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
563 B
30 lines
563 B
<?xml version="1.0"?> |
|
<Template author="Matt Ward" version="1.0"> |
|
|
|
<Config |
|
name="MVC Controller" |
|
icon="VB.File.NewClass" |
|
category="VB" |
|
subcategory="ASP.NET MVC" |
|
defaultname="Controller${Number}.vb" |
|
language="VBNET"/> |
|
|
|
<Description>MVC Controller</Description> |
|
|
|
<Files> |
|
<File name="${FullName}" language="VBNET"> |
|
<![CDATA[${StandardHeader.VBNET} |
|
Imports System |
|
Imports System.Web.Mvc |
|
|
|
Public Class ${ClassName} |
|
Inherits Controller |
|
|
|
Function Index() As ActionResult |
|
Return View() |
|
End Function |
|
End Class |
|
]]> |
|
</File> |
|
</Files> |
|
</Template>
|
|
|