Blame ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp

Packit c32a2d
/*
Packit c32a2d
	mpg123clr: MPEG Audio Decoder library Common Language Runtime version.
Packit c32a2d

Packit c32a2d
	copyright 2009 by Malcolm Boczek - free software under the terms of the LGPL 2.1
Packit c32a2d
	mpg123clr.dll is a derivative work of libmpg123 - all original mpg123 licensing terms apply.
Packit c32a2d

Packit c32a2d
	All rights to this work freely assigned to the mpg123 project.
Packit c32a2d
*/
Packit c32a2d
/*
Packit c32a2d
	libmpg123: MPEG Audio Decoder library
Packit c32a2d

Packit c32a2d
	copyright 1995-2008 by the mpg123 project - free software under the terms of the LGPL 2.1
Packit c32a2d
	see COPYING and AUTHORS files in distribution or http://mpg123.org
Packit c32a2d

Packit c32a2d
*/
Packit c32a2d
/*
Packit c32a2d
	1.8.1.0	04-Aug-09	Initial release.
Packit c32a2d
*/
Packit c32a2d

Packit c32a2d
#include "stdafx.h"
Packit c32a2d

Packit c32a2d
using namespace System::Reflection;
Packit c32a2d
using namespace System::Runtime::CompilerServices;
Packit c32a2d

Packit c32a2d
//
Packit c32a2d
// General Information about an assembly is controlled through the following 
Packit c32a2d
// set of attributes. Change these attribute values to modify the information
Packit c32a2d
// associated with an assembly.
Packit c32a2d
//
Packit c32a2d
[assembly:AssemblyTitleAttribute("mpg123clr.dll")];
Packit c32a2d
[assembly:AssemblyDescriptionAttribute("mpg123clr Dynamic Link Library")];
Packit c32a2d
[assembly:AssemblyConfigurationAttribute("")];
Packit c32a2d
[assembly:AssemblyCompanyAttribute("mpg123 Project")];
Packit c32a2d
[assembly:AssemblyProductAttribute("mpg123clr.dll")];
Packit c32a2d
[assembly:AssemblyCopyrightAttribute("© 2009-2011 by the mpg123 project")];
Packit c32a2d
[assembly:AssemblyTrademarkAttribute("")];
Packit c32a2d
[assembly:AssemblyCultureAttribute("")];		
Packit c32a2d

Packit c32a2d
//
Packit c32a2d
// Version information for an assembly consists of the following four values:
Packit c32a2d
//
Packit c32a2d
//      Major Version
Packit c32a2d
//      Minor Version 
Packit c32a2d
//      Build Number
Packit c32a2d
//      Revision
Packit c32a2d
//
Packit c32a2d
// You can specify all the value or you can default the Revision and Build Numbers 
Packit c32a2d
// by using the '*' as shown below:
Packit c32a2d

Packit c32a2d
[assembly:AssemblyVersionAttribute("1.13.0.0")];
Packit c32a2d

Packit c32a2d
//
Packit c32a2d
// In order to sign your assembly you must specify a key to use. Refer to the 
Packit c32a2d
// Microsoft .NET Framework documentation for more information on assembly signing.
Packit c32a2d
//
Packit c32a2d
// Use the attributes below to control which key is used for signing. 
Packit c32a2d
//
Packit c32a2d
// Notes: 
Packit c32a2d
//   (*) If no key is specified, the assembly is not signed.
Packit c32a2d
//   (*) KeyName refers to a key that has been installed in the Crypto Service
Packit c32a2d
//       Provider (CSP) on your machine. KeyFile refers to a file which contains
Packit c32a2d
//       a key.
Packit c32a2d
//   (*) If the KeyFile and the KeyName values are both specified, the 
Packit c32a2d
//       following processing occurs:
Packit c32a2d
//       (1) If the KeyName can be found in the CSP, that key is used.
Packit c32a2d
//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
Packit c32a2d
//           in the KeyFile is installed into the CSP and used.
Packit c32a2d
//   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
Packit c32a2d
//        When specifying the KeyFile, the location of the KeyFile should be
Packit c32a2d
//        relative to the project directory.
Packit c32a2d
//   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
Packit c32a2d
//       documentation for more information on this.
Packit c32a2d
//
Packit c32a2d
[assembly:AssemblyDelaySignAttribute(false)];
Packit c32a2d
[assembly:AssemblyKeyFileAttribute("")];
Packit c32a2d
[assembly:AssemblyKeyNameAttribute("")];