AssemblyInfo.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Reflection;
  3. using System.Runtime.CompilerServices;
  4. using System.Runtime.InteropServices;
  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("WinSCPnet")]
  9. [assembly: AssemblyDescription("WinSCP scripting interface .NET wrapper")]
  10. [assembly: AssemblyConfiguration("")]
  11. [assembly: AssemblyCompany("Martin Prikryl")]
  12. [assembly: AssemblyProduct("WinSCP")]
  13. [assembly: AssemblyCopyright("")]
  14. [assembly: AssemblyTrademark("")]
  15. [assembly: AssemblyCulture("")]
  16. [assembly: ComVisible(false)]
  17. // The following GUID is for the ID of the typelib if this project is exposed to COM
  18. // Duplicated in ConsoleRunner.cpp
  19. [assembly: Guid("a0b93468-d98a-4845-a234-8076229ad93f")]
  20. [assembly: AssemblyVersion(WinSCP.AssemblyConstants.Version)]
  21. [assembly: AssemblyFileVersion(WinSCP.AssemblyConstants.Version)]
  22. [assembly: AssemblyInformationalVersion(WinSCP.AssemblyConstants.ProductVersion)]
  23. [assembly: CLSCompliant(true)]
  24. [assembly: InternalsVisibleTo("Tests")]
  25. namespace WinSCP
  26. {
  27. internal static class AssemblyConstants
  28. {
  29. public const string UndefinedProductVersion = "9.9.9.9";
  30. public const string Version = "1.16.0.0";
  31. public const string ProductVersion = "6.5.5.0";
  32. }
  33. }