AssemblyInfo.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* This file is part of SevenZipSharp.
  2. SevenZipSharp is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU Lesser General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or
  5. (at your option) any later version.
  6. SevenZipSharp is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU Lesser General Public License for more details.
  10. You should have received a copy of the GNU Lesser General Public License
  11. along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. using System;
  14. using System.Reflection;
  15. using System.Runtime.InteropServices;
  16. // General Information about an assembly is controlled through the following
  17. // set of attributes. Change these attribute values to modify the information
  18. // associated with an assembly.
  19. [assembly: AssemblyTitle("SevenZipSharp")]
  20. [assembly: AssemblyDescription("7-zip native library wrapper")]
  21. [assembly: AssemblyConfiguration("")]
  22. [assembly: AssemblyCompany("Markovtsev Vadim")]
  23. [assembly: AssemblyProduct("SevenZipSharp")]
  24. [assembly: AssemblyCopyright("Copyright (C) Markovtsev Vadim 2009, 2010, licenced under LGPLv3")]
  25. [assembly: AssemblyTrademark("")]
  26. [assembly: AssemblyCulture("")]
  27. [assembly: CLSCompliant(true)]
  28. // Setting ComVisible to false makes the types in this assembly not visible
  29. // to COM components. If you need to access a type in this assembly from
  30. // COM, set the ComVisible attribute to true on that type.
  31. [assembly: ComVisible(false)]
  32. // The following GUID is for the ID of the typelib if this project is exposed to COM
  33. [assembly: Guid("80ed772d-f5a7-4314-b5bb-2be78e5f5f06")]
  34. // Version information for an assembly consists of the following four values:
  35. //
  36. // Major Version
  37. // Minor Version
  38. // Build Number
  39. // Revision
  40. //
  41. // You can specify all the values or you can default the Build and Revision Numbers
  42. // by using the '*' as shown below:
  43. // [assembly: AssemblyVersion("1.0.*")]
  44. [assembly: AssemblyVersion("0.64.*")]