CommonAssemblyInfo.cs 923 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Reflection;
  3. using System.Runtime.InteropServices;
  4. [assembly: AssemblyDescription("SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.")]
  5. [assembly: AssemblyCompany("Renci")]
  6. [assembly: AssemblyProduct("SSH.NET")]
  7. [assembly: AssemblyCopyright("Copyright © Renci 2010-2017")]
  8. [assembly: AssemblyTrademark("")]
  9. [assembly: AssemblyCulture("")]
  10. [assembly: AssemblyVersion("2017.0.0")]
  11. [assembly: AssemblyFileVersion("2017.0.0")]
  12. [assembly: AssemblyInformationalVersion("2017.0.0-beta1")]
  13. [assembly: CLSCompliant(false)]
  14. // Setting ComVisible to false makes the types in this assembly not visible
  15. // to COM components. If you need to access a type in this assembly from
  16. // COM, set the ComVisible attribute to true on that type.
  17. [assembly: ComVisible(false)]
  18. #if DEBUG
  19. [assembly: AssemblyConfiguration("Debug")]
  20. #else
  21. [assembly: AssemblyConfiguration("Release")]
  22. #endif