AssemblyInfo.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // AssemblyInfo.cs
  2. // Copyright (C) 2001 Mike Krueger
  3. //
  4. // This program is free software; you can redistribute it and/or
  5. // modify it under the terms of the GNU General Public License
  6. // as published by the Free Software Foundation; either version 2
  7. // of the License, or (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program; if not, write to the Free Software
  16. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. //
  18. // Linking this library statically or dynamically with other modules is
  19. // making a combined work based on this library. Thus, the terms and
  20. // conditions of the GNU General Public License cover the whole
  21. // combination.
  22. //
  23. // As a special exception, the copyright holders of this library give you
  24. // permission to link this library with independent modules to produce an
  25. // executable, regardless of the license terms of these independent
  26. // modules, and to copy and distribute the resulting executable under
  27. // terms of your choice, provided that you also meet, for each linked
  28. // independent module, the terms and conditions of the license of that
  29. // module. An independent module is a module which is not derived from
  30. // or based on this library. If you modify this library, you may extend
  31. // this exception to your version of the library, but you are not
  32. // obligated to do so. If you do not wish to do so, delete this
  33. // exception statement from your version.
  34. using System;
  35. using System.Reflection;
  36. using System.Runtime.CompilerServices;
  37. [assembly: CLSCompliant(true)]
  38. [assembly: AssemblyTitle("ICSharpCode.SharpZipLibrary")]
  39. [assembly: AssemblyDescription("free C# zlib implementation")]
  40. [assembly: AssemblyConfiguration("")]
  41. [assembly: AssemblyCompany("")]
  42. [assembly: AssemblyProduct("#ZipLibrary")]
  43. [assembly: AssemblyCopyright("(c) Mike Krueger 2001-2004")]
  44. [assembly: AssemblyTrademark("")]
  45. [assembly: AssemblyCulture("")]
  46. #if NET_2_0
  47. [assembly: AssemblyVersion("2.6.0.0")]
  48. #else
  49. // not worrying about the NET_1_0 profile for now.
  50. [assembly: AssemblyVersion("0.6.0.0")]
  51. #endif
  52. [assembly: AssemblyDelaySign(true)]
  53. [assembly: AssemblyKeyFile ("SharpZipLib.pub")]