mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
67 lines
2.8 KiB
C#
67 lines
2.8 KiB
C#
|
|
// /***************************************************************************
|
|||
|
|
// The Disc Image Chef
|
|||
|
|
// ----------------------------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// Filename : AssemblyInfo.cs
|
|||
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|||
|
|
//
|
|||
|
|
// Component : Compression algorithms.
|
|||
|
|
//
|
|||
|
|
// --[ Description ] ----------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// C# assembly definitions.
|
|||
|
|
//
|
|||
|
|
// --[ License ] --------------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// This library is free software; you can redistribute it and/or modify
|
|||
|
|
// it under the terms of the GNU Lesser General Public License as
|
|||
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|||
|
|
// License, or (at your option) any later version.
|
|||
|
|
//
|
|||
|
|
// This library is distributed in the hope that it will be useful, but
|
|||
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|||
|
|
// Lesser General Public License for more details.
|
|||
|
|
//
|
|||
|
|
// You should have received a copy of the GNU Lesser General Public
|
|||
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|||
|
|
//
|
|||
|
|
// ----------------------------------------------------------------------------
|
|||
|
|
// Copyright © 2011-2018 Natalia Portillo
|
|||
|
|
// ****************************************************************************/
|
|||
|
|
|
|||
|
|
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("DiscImageChef.Compression")]
|
|||
|
|
[assembly: AssemblyDescription("The Disc Image Chef")]
|
|||
|
|
[assembly: AssemblyConfiguration("")]
|
|||
|
|
[assembly: AssemblyCompany("Claunia.com")]
|
|||
|
|
[assembly: AssemblyProduct("")]
|
|||
|
|
[assembly: AssemblyCopyright("Copyright © 2011-2018 Natalia Portillo")]
|
|||
|
|
[assembly: AssemblyTrademark("")]
|
|||
|
|
[assembly: AssemblyCulture("")]
|
|||
|
|
|
|||
|
|
// Setting ComVisible to false makes the types in this assembly not visible
|
|||
|
|
// to COM components. If you need to access a type in this assembly from
|
|||
|
|
// COM, set the ComVisible attribute to true on that type.
|
|||
|
|
[assembly: ComVisible(false)]
|
|||
|
|
|
|||
|
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|||
|
|
[assembly: Guid("858398D1-7321-4763-8BAB-56BBFEC74E29")]
|
|||
|
|
|
|||
|
|
// Version information for an assembly consists of the following four values:
|
|||
|
|
//
|
|||
|
|
// Major Version
|
|||
|
|
// Minor Version
|
|||
|
|
// Build Number
|
|||
|
|
// Revision
|
|||
|
|
//
|
|||
|
|
// You can specify all the values or you can default the Build and Revision Numbers
|
|||
|
|
// by using the '*' as shown below:
|
|||
|
|
// [assembly: AssemblyVersion("1.0.*")]
|
|||
|
|
[assembly: AssemblyVersion("4.0.99.0")]
|