Mineplex2018-withcommit/Website/packages/T4Scaffolding.1.0.6/tools/CustomScaffolder/DefaultT4Template.cs.t4

16 lines
531 B
Plaintext
Raw Normal View History

2013-08-27 17:14:08 +02:00
<#@ template language="C#" HostSpecific="True" inherits="DynamicTransform" #>
<#@ Output Extension="cs.t4" #>
<#= "<" #>#@ Template Language="C#" HostSpecific="True" Inherits="DynamicTransform" #<#= ">" #>
<#= "<" #>#@ Output Extension="cs" #<#= ">" #>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace <#= "<" #>#= Model.Namespace #<#= ">" #>
{
public class ExampleOutput
{
// Example model value from scaffolder script: <#= "<" #>#= Model.ExampleValue #<#= ">" #>
}
}