AssemblyInfo.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. using System.Resources;
  5. // General Information about an assembly is controlled through the following
  6. // set of attributes. Change these attribute values to modify the information
  7. // associated with an assembly.
  8. [assembly: AssemblyTitle("SSH Handler")]
  9. [assembly: AssemblyDescription("SSH URL handler for Windows")]
  10. [assembly: AssemblyConfiguration("")]
  11. [assembly: AssemblyCompany("Douglas Thrift")]
  12. [assembly: AssemblyProduct("SSH Handler")]
  13. [assembly: AssemblyCopyright("Copyright 2014 Douglas Thrift")]
  14. [assembly: AssemblyTrademark("")]
  15. [assembly: AssemblyCulture("")]
  16. // Setting ComVisible to false makes the types in this assembly not visible
  17. // to COM components. If you need to access a type in this assembly from
  18. // COM, set the ComVisible attribute to true on that type.
  19. [assembly: ComVisible(false)]
  20. // The following GUID is for the ID of the typelib if this project is exposed to COM
  21. [assembly: Guid("177875f5-44fe-4c0d-a859-57eb59ab54af")]
  22. // Version information for an assembly consists of the following four values:
  23. //
  24. // Major Version
  25. // Minor Version
  26. // Build Number
  27. // Revision
  28. //
  29. [assembly: AssemblyVersion("1.1.0.0")]
  30. [assembly: AssemblyFileVersion("1.1.0.0")]
  31. [assembly: NeutralResourcesLanguageAttribute("en-US")]