Mineplex2018-withcommit/Website/packages/MvcScaffolding.1.0.7/tools/RazorView/Empty.vb.t4

15 lines
465 B
Plaintext
Raw Permalink Normal View History

2013-08-27 17:14:08 +02:00
<#@ Template Language="VB" HostSpecific="True" Inherits="DynamicTransform" #>
<#@ Output extension="vbhtml" #>
<# Dim viewDataType = CType(Model.ViewDataType, EnvDTE.CodeType) #>
<# If viewDataType IsNot Nothing Then #>
@ModelType <#= viewDataType.FullName #>
<# End If #>
@Code
ViewData("Title") = "<#= Model.ViewName #>"
<# If Not String.IsNullOrEmpty(Model.Layout) #>
Layout = "<#= Model.Layout #>"
<# End If #>
End Code
<h2><#= Model.ViewName #></h2>