Skip to content

Instantly share code, notes, and snippets.

@MikeLarned
Last active December 10, 2015 00:59
Show Gist options
  • Save MikeLarned/4355108 to your computer and use it in GitHub Desktop.
Save MikeLarned/4355108 to your computer and use it in GitHub Desktop.
Basic Runtime template to be used in an application outside of Visual Studio
<#@ template language="C#" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
using System;
namespace <#= _assemblyName #>.Infrastructure.Entities
{
public class <#= _entityName #>
{
public Guid Id { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment