Cake.FtpDeploy 0.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Cake.FtpDeploy --version 0.0.2
NuGet\Install-Package Cake.FtpDeploy -Version 0.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Cake.FtpDeploy" Version="0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cake.FtpDeploy --version 0.0.2
#r "nuget: Cake.FtpDeploy, 0.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Cake.FtpDeploy as a Cake Addin
#addin nuget:?package=Cake.FtpDeploy&version=0.0.2

// Install Cake.FtpDeploy as a Cake Tool
#tool nuget:?package=Cake.FtpDeploy&version=0.0.2

Repository: https://github.com/Supermortal/Cake.FtpDeploy

Example Usage In Build.cake

FtpDeploy(new FtpDeploySettings() {
        FtpUri = "ftp://somebaseftpurl",
        FtpUserName = "some-ftp-username",
        FtpPassword = "some-ftp-password",
        ArtifactsPath = "relative-or-absolute-path-to-published-artifacts"
    });

This addin will delete all files at the ftp URI, and then upload every file in the ArtifactsPath directory

To publish artifacts locally from a solution, create a Cake task similar to this:

Task("Publish Artifacts Locally")
    .Does(() =>
{
    MSBuild(
        "./SomeSolution.sln", x => {

            x.ArgumentCustomization = args => args.Append("/p:DeployOnBuild=true").Append("/p:PublishProfile=FolderProfile");

            x
            .SetConfiguration("Release")
            .WithTarget("Build");
        });
});

The PublishProfile can be created in Visual Studio (it needs to be a Folder publish) See more here: https://docs.microsoft.com/en-us/dotnet/core/tutorials/publishing-with-visual-studio

Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 8,078 7/5/2019
1.0.0.1 535 7/5/2019
1.0.0 534 7/5/2019
0.0.3 2,697 7/20/2018
0.0.2 1,100 6/1/2018
0.0.1 1,165 1/24/2018

Alpha