25 lines
944 B
C#
25 lines
944 B
C#
// name : AssemblyInfo.cs
|
|
// project : RTF Framelet
|
|
// created : Jani Giannoudis - 2008.06.07
|
|
// language : c#
|
|
// environment: .NET 2.0
|
|
// copyright : (c) 2004-2013 by Jani Giannoudis, Switzerland
|
|
|
|
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
|
|
[assembly: AssemblyTitle("Itenso RTF to HTML Converter")]
|
|
[assembly: AssemblyDescription("Itenso RTF to HTML Converter")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("Jani Giannoudis")]
|
|
[assembly: AssemblyProduct("Itenso RTF to HTML Converter")]
|
|
[assembly: AssemblyCopyright("Copyright © Jani Giannoudis 2004-2013")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
[assembly: ComVisible(false)]
|
|
[assembly: CLSCompliant(true)] |