mirror of
https://github.com/art-ist/mustache-sharp.git
synced 2024-06-16 21:05:32 +00:00
19 lines
752 B
C#
19 lines
752 B
C#
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[assembly: AssemblyTitle("mustache-sharp")]
|
|
[assembly: AssemblyDescription("A extension of the mustache text template engine for .NET.")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("truncon")]
|
|
[assembly: AssemblyProduct("mustache-sharp")]
|
|
[assembly: AssemblyCopyright("Copyright © 2013")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
[assembly: CLSCompliant(true)]
|
|
[assembly: ComVisible(false)]
|
|
[assembly: Guid("e5a4263d-d450-4d85-a4d5-44c0a2822668")]
|
|
[assembly: AssemblyVersion("0.2.8.1")]
|
|
[assembly: AssemblyFileVersion("0.2.8.1")]
|
|
[assembly: InternalsVisibleTo("mustache-sharp.test")] |