AssemblyInfo.cs
上传用户:huiyue
上传日期:2022-04-08
资源大小:1429k
文件大小:3k
源码类别:

搜索引擎

开发平台:

ASP/ASPX

  1. /*
  2. Mono.GetOptions reference first found here
  3. http://blog.pumacode.org/2006/07/24/csharp-getopts-mono-getoptions/
  4. followed links to here
  5. http://www.talios.com/command_line_processing_with_monogetoptions.htm
  6. and finally retrieved code from here
  7. http://svn.myrealbox.com/viewcvs/trunk/mcs/class/Mono.GetOptions/Mono/?rev=65522
  8.  
  9. Other commandlinearg code that was found (but not used)
  10. http://www.codeproject.com/csharp/yaclap.asp
  11. http://www.codeproject.com/csharp/command_line.asp
  12. */
  13. //
  14. // Permission is hereby granted, free of charge, to any person obtaining
  15. // a copy of this software and associated documentation files (the
  16. // "Software"), to deal in the Software without restriction, including
  17. // without limitation the rights to use, copy, modify, merge, publish,
  18. // distribute, sublicense, and/or sell copies of the Software, and to
  19. // permit persons to whom the Software is furnished to do so, subject to
  20. // the following conditions:
  21. // 
  22. // The above copyright notice and this permission notice shall be
  23. // included in all copies or substantial portions of the Software.
  24. // 
  25. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  26. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  27. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  28. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  29. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  30. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  31. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  32. //
  33. using System;
  34. using System.Reflection;
  35. using System.Runtime.CompilerServices;
  36. //
  37. // General Information about an assembly is controlled through the following 
  38. // set of attributes. Change these attribute values to modify the information
  39. // associated with an assembly.
  40. //
  41. [assembly: AssemblyTitle("Mono.GetOptions")]
  42. [assembly: AssemblyDescription("Command line arguments parsing library")]
  43. [assembly: AssemblyConfiguration("")]
  44. [assembly: AssemblyCompany("")]
  45. [assembly: AssemblyProduct("Mono")]
  46. [assembly: AssemblyCopyright("(C)2002,2003,2004,2005 Rafael Teixeira")]
  47. [assembly: AssemblyTrademark("")]
  48. [assembly: AssemblyCulture("")]
  49. [assembly: CLSCompliant(true)]
  50. //
  51. // Version information for an assembly consists of the following four values:
  52. //
  53. //      Major Version
  54. //      Minor Version 
  55. //      Build Number
  56. //      Revision
  57. //
  58. // You can specify all the values or you can default the Revision and Build Numbers 
  59. // by using the '*' as shown below:
  60. /*
  61. [assembly: AssemblyVersion(Consts.FxVersion)]
  62. [assembly: AssemblyDelaySign(true)]
  63. [assembly: AssemblyKeyFile("../mono.pub")]
  64. */