15 lines
429 B
Plaintext
15 lines
429 B
Plaintext
<#@ Template Language="C#" HostSpecific="True" Inherits="DynamicTransform" #>
|
|
<#@ Output extension="cshtml" #>
|
|
<# var viewDataType = (EnvDTE.CodeType) Model.ViewDataType; #>
|
|
<# if(viewDataType != null) { #>
|
|
@model <#= viewDataType.FullName #>
|
|
|
|
<# } #>
|
|
@{
|
|
ViewBag.Title = "<#= Model.ViewName #>";
|
|
<# if (!String.IsNullOrEmpty(Model.Layout)) { #>
|
|
Layout = "<#= Model.Layout #>";
|
|
<# } #>
|
|
}
|
|
|
|
<h2><#= Model.ViewName #></h2> |