AssemblyInfo.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Reflection;
  3. using System.Runtime.InteropServices;
  4. // General Information about an assembly is controlled through the following
  5. // set of attributes. Change these attribute values to modify the information
  6. // associated with an assembly.
  7. [assembly: AssemblyTitle("WinSCPnet")]
  8. [assembly: AssemblyDescription("WinSCP scripting interface .NET wrapper")]
  9. [assembly: AssemblyConfiguration("")]
  10. [assembly: AssemblyCompany("Martin Prikryl")]
  11. [assembly: AssemblyProduct("WinSCP")]
  12. [assembly: AssemblyCopyright("")]
  13. [assembly: AssemblyTrademark("")]
  14. [assembly: AssemblyCulture("")]
  15. [assembly: ComVisible(false)]
  16. // The following GUID is for the ID of the typelib if this project is exposed to COM
  17. [assembly: Guid("a0b93468-d98a-4845-a234-8076229ad93f")]
  18. [assembly: AssemblyVersion(WinSCP.AssemblyConstants.Version)]
  19. [assembly: AssemblyFileVersion(WinSCP.AssemblyConstants.Version)]
  20. [assembly: AssemblyInformationalVersion(WinSCP.AssemblyConstants.ProductVersion)]
  21. [assembly: CLSCompliant(true)]
  22. namespace WinSCP
  23. {
  24. internal static class AssemblyConstants
  25. {
  26. public const string UndefinedProductVersion = "9.9.9.9";
  27. public const string Version = "1.5.6.0";
  28. public const string ProductVersion = "5.13.6.0";
  29. }
  30. }