| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Reflection;
- using System.Runtime.InteropServices;
- // General Information about an assembly is controlled through the following
- // set of attributes. Change these attribute values to modify the information
- // associated with an assembly.
- [assembly: AssemblyTitle("WinSCPnet")]
- [assembly: AssemblyDescription("WinSCP scripting interface .NET wrapper")]
- [assembly: AssemblyConfiguration("")]
- [assembly: AssemblyCompany("Martin Prikryl")]
- [assembly: AssemblyProduct("WinSCP")]
- [assembly: AssemblyCopyright("")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
- [assembly: ComVisible(false)]
- // The following GUID is for the ID of the typelib if this project is exposed to COM
- [assembly: Guid("a0b93468-d98a-4845-a234-8076229ad93f")]
- [assembly: AssemblyVersion(WinSCP.AssemblyConstants.Version)]
- [assembly: AssemblyFileVersion(WinSCP.AssemblyConstants.Version)]
- [assembly: AssemblyInformationalVersion(WinSCP.AssemblyConstants.ProductVersion)]
- [assembly: CLSCompliant(true)]
- namespace WinSCP
- {
- internal static class AssemblyConstants
- {
- public const string UndefinedProductVersion = "9.9.9.9";
- public const string Version = "1.5.6.0";
- public const string ProductVersion = "5.13.6.0";
- }
- }
|