|
123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // libpipi Pathetic image processing interface library
- // Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
- // All Rights Reserved
- //
- // $Id$
- //
- // This library is free software. It comes without any warranty, to
- // the extent permitted by applicable law. You can redistribute it
- // and/or modify it under the terms of the Do What The Fuck You Want
- // To Public License, Version 2, as published by Sam Hocevar. See
- // http://sam.zoy.org/wtfpl/COPYING for more details.
- //
-
- using System.Reflection;
- using System.Runtime.CompilerServices;
-
- // Information about this assembly is defined by the following attributes.
- // Change them to the values specific to your project.
-
- [assembly: AssemblyTitle("Pipi")]
- [assembly: AssemblyDescription("")]
- [assembly: AssemblyConfiguration("")]
- [assembly: AssemblyCompany("")]
- [assembly: AssemblyProduct("")]
- [assembly: AssemblyCopyright("")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
-
- // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
- // If the build and revision are set to '*' they will be updated automatically.
-
- //[assembly: AssemblyVersion("1.0.*.*")]
-
- // The following attributes are used to specify the signing key for the assembly,
- // if desired. See the Mono documentation for more information about signing.
-
- [assembly: AssemblyDelaySign(false)]
- //[assembly: AssemblyKeyFile("pipi-sharp.snk")]
|