Skip to content

Commit

Permalink
Renamed CalamariDotNetCorePlatform property to DotNetCorePlatform
Browse files Browse the repository at this point in the history
  • Loading branch information
MJRichardson committed Jul 26, 2017
1 parent c8b5b3d commit 129815a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3173,7 +3173,6 @@ Octopus.Client.Model.Endpoints
{
static System.String Linux64
static System.String Osx64
static System.String Portable
}
class CloudRegionEndpointResource
Octopus.Client.Model.IResource
Expand Down Expand Up @@ -3235,8 +3234,8 @@ Octopus.Client.Model.Endpoints
{
.ctor()
String AccountId { get; set; }
String CalamariDotNetCorePlatform { get; set; }
Octopus.Client.Model.CommunicationStyle CommunicationStyle { get; }
String DotNetCorePlatform { get; set; }
String Fingerprint { get; set; }
String Host { get; set; }
Int32 Port { get; set; }
Expand All @@ -3246,7 +3245,6 @@ Octopus.Client.Model.Endpoints
{
static System.String Linux64
static System.String Osx64
static System.String Portable
}
}
class TentacleDetailsResource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3573,7 +3573,6 @@ Octopus.Client.Model.Endpoints
{
static System.String Linux64
static System.String Osx64
static System.String Portable
}
class CloudRegionEndpointResource
Octopus.Client.Model.IResource
Expand Down Expand Up @@ -3635,8 +3634,8 @@ Octopus.Client.Model.Endpoints
{
.ctor()
String AccountId { get; set; }
String CalamariDotNetCorePlatform { get; set; }
Octopus.Client.Model.CommunicationStyle CommunicationStyle { get; }
String DotNetCorePlatform { get; set; }
String Fingerprint { get; set; }
String Host { get; set; }
Int32 Port { get; set; }
Expand All @@ -3646,7 +3645,6 @@ Octopus.Client.Model.Endpoints
{
static System.String Linux64
static System.String Osx64
static System.String Portable
}
}
class TentacleDetailsResource
Expand Down
5 changes: 2 additions & 3 deletions source/Octopus.Client/Model/Endpoints/SshEndpointResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,15 @@ public string Uri

/// <summary>
/// The .NET Core platform for Calamari. This determines which build of Calamari will be pushed with deployments.
/// For full .NET framework (or Mono), this value should be null.
/// For full .NET framework (which requires Mono to be installed on the SSH target server), this value should be null.
/// For the available .NET Core platforms see <see cref="CalamariDotNetCorePlatforms"/>
/// </summary>
[Trim]
[Writeable]
public string CalamariDotNetCorePlatform { get; set; }
public string DotNetCorePlatform { get; set; }

public static class CalamariDotNetCorePlatforms
{
public static readonly string Portable = "portable";
public static readonly string Linux64 = "linux-x64";
public static readonly string Osx64 = "osx-x64";
}
Expand Down

0 comments on commit 129815a

Please sign in to comment.