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.
35 lines
511 B
35 lines
511 B
<?xml version="1.0"?> |
|
<Template author="Matt Ward" version="1.0"> |
|
|
|
<Config |
|
name="Razor View Page" |
|
icon="C#.File.MvcRazorFile" |
|
category="C#" |
|
subcategory="ASP.NET MVC" |
|
defaultname="ViewPage${Number}.cshtml" |
|
language="C#"/> |
|
|
|
<Description>MVC Razor View Page</Description> |
|
|
|
<Files> |
|
<File name="${FullName}" language="C#"> |
|
<![CDATA[@{ |
|
Layout = null; |
|
} |
|
|
|
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<title></title> |
|
</head> |
|
<body> |
|
<div> |
|
|
|
</div> |
|
</body> |
|
</html> |
|
]]> |
|
</File> |
|
</Files> |
|
</Template> |
|
|
|
|