[2866] | 1 | // |
---|
[2872] | 2 | // The Pimp The Pathetic Image Manipulation Program |
---|
[2951] | 3 | // Copyright (c) 2008 Sam Hocevar <sam@zoy.org> |
---|
[2872] | 4 | // All Rights Reserved |
---|
[2866] | 5 | // |
---|
[2872] | 6 | // $Id$ |
---|
| 7 | // |
---|
| 8 | // This library is free software. It comes without any warranty, to |
---|
| 9 | // the extent permitted by applicable law. You can redistribute it |
---|
| 10 | // and/or modify it under the terms of the Do What The Fuck You Want |
---|
| 11 | // To Public License, Version 2, as published by Sam Hocevar. See |
---|
| 12 | // http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
| 13 | // |
---|
| 14 | |
---|
[2866] | 15 | using System.Reflection; |
---|
| 16 | using System.Runtime.CompilerServices; |
---|
| 17 | |
---|
| 18 | // Information about this assembly is defined by the following attributes. |
---|
| 19 | // Change them to the values specific to your project. |
---|
| 20 | |
---|
| 21 | [assembly: AssemblyTitle("Pimp")] |
---|
| 22 | [assembly: AssemblyDescription("")] |
---|
| 23 | [assembly: AssemblyConfiguration("")] |
---|
| 24 | [assembly: AssemblyCompany("")] |
---|
| 25 | [assembly: AssemblyProduct("")] |
---|
| 26 | [assembly: AssemblyCopyright("")] |
---|
| 27 | [assembly: AssemblyTrademark("")] |
---|
| 28 | [assembly: AssemblyCulture("")] |
---|
| 29 | |
---|
| 30 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". |
---|
| 31 | // If the build and revision are set to '*' they will be updated automatically. |
---|
| 32 | |
---|
[2914] | 33 | //[assembly: AssemblyVersion("1.0.*.*")] |
---|
[2866] | 34 | |
---|
| 35 | // The following attributes are used to specify the signing key for the assembly, |
---|
| 36 | // if desired. See the Mono documentation for more information about signing. |
---|
| 37 | |
---|
| 38 | [assembly: AssemblyDelaySign(false)] |
---|
| 39 | [assembly: AssemblyKeyFile("")] |
---|