33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
|
using System.Reflection;
|
||
|
using System.Runtime.CompilerServices;
|
||
|
using System.Runtime.InteropServices;
|
||
|
using System.Resources;
|
||
|
|
||
|
// Information about this assembly is defined by the following attributes.
|
||
|
// Change them to the values specific to your project.
|
||
|
|
||
|
[assembly: AssemblyTitle("FluentFTP")]
|
||
|
[assembly: AssemblyDescription("FTP and FTPS client implementation")]
|
||
|
[assembly: AssemblyConfiguration("")]
|
||
|
[assembly: AssemblyCompany("")]
|
||
|
[assembly: AssemblyProduct("FluentFTP")]
|
||
|
[assembly: AssemblyCopyright("J.P. Trosclair and Harsh Gupta")]
|
||
|
[assembly: AssemblyTrademark("")]
|
||
|
[assembly: AssemblyCulture("")]
|
||
|
|
||
|
// Semantic versioning
|
||
|
// - Change MAJOR when the API breaks
|
||
|
// - Change MINOR when new features are added
|
||
|
// - CHANGE REVISION when fixes / very minor features are made
|
||
|
|
||
|
[assembly: AssemblyVersion("16.4.0")]
|
||
|
|
||
|
// The following attributes are used to specify the signing key for the assembly,
|
||
|
// if desired. See the Mono documentation for more information about signing.
|
||
|
|
||
|
//[assembly: AssemblyDelaySign(false)]
|
||
|
//[assembly: AssemblyKeyFile("")]
|
||
|
|
||
|
[assembly: GuidAttribute("A88FA910-1553-4000-AA56-6FC001AD7CF1")]
|
||
|
[assembly: NeutralResourcesLanguageAttribute("en")]
|