From 9244c819cf26558d89fa141fa81fd6147a430d1f Mon Sep 17 00:00:00 2001 From: Harsh Gupta Date: Sat, 26 Nov 2016 12:05:08 +0530 Subject: [PATCH] improve readme/nuget --- .gitignore | 1 + FluentFTP/AssemblyInfo.cs | 2 +- README.md | 1 + build_nuget.bat | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 235e47e0c..ab1818dfc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ bin obj +nuget API Reference.shfbproj_jp Help diff --git a/FluentFTP/AssemblyInfo.cs b/FluentFTP/AssemblyInfo.cs index ad7774aaa..9b90a85b6 100644 --- a/FluentFTP/AssemblyInfo.cs +++ b/FluentFTP/AssemblyInfo.cs @@ -19,7 +19,7 @@ // The form "{Major}.{Minor}.*" will automatically update the build and revision, // and "{Major}.{Minor}.{Build}.*" will update just the revision. -[assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("16.0.14")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/README.md b/README.md index 9c4c81aa1..fe3e2e8fa 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ FluentFTP is a fully managed FTP client that is designed to be easy to use and e - Support for adding [client certificates](#client-certificates) - Passive and Active data connections (PASV, EPSV, PORT and EPRT) - Support for DrFTPD's (non-standard) PRET command +- Support for FTP Proxies (User@Host, HTTP 1.1) - Returns `Stream` objects for reading or writing files on the server - Attempts to make the FTP protocol safer with threads by cloning the control connection for file transfers (can be disabled) - Implements its own internal locking in an effort to keep transactions synchronized diff --git a/build_nuget.bat b/build_nuget.bat index c8b4dfdc3..44715e33d 100644 --- a/build_nuget.bat +++ b/build_nuget.bat @@ -11,5 +11,5 @@ rd /q /s FluentFTP\bin :: Build signed DLL rem %msbuild% /p:Configuration=Release /p:SignAssembly=true /p:AssemblyOriginatorKeyFile="%snk%" FluentFTP\FluentFTP.csproj -%nuget% pack FluentFTP\FluentFTP.csproj -Prop Configuration=Release -OutputDirectory "Q:\Code\CS-OSS\FluentFTP-Nuget" +%nuget% pack FluentFTP\FluentFTP.csproj -Prop Configuration=Release -OutputDirectory FluentFTP\nuget\ pause \ No newline at end of file