Skip to content

Commit

Permalink
Merge branch 'master' into enh-projectgroupconfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
slewis74 committed May 22, 2018
2 parents fb747dd + 8ef4dec commit 5fdc50d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,6 @@ Octopus.Client.Model
Octopus.Client.Model.Resource
{
.ctor()
Boolean ApplyToDynamicallyReferencedPackages { get; set; }
Nullable<Int32> DeleteUnreleasedPackagesAfterDays { get; set; }
}
abstract class BuiltInTasks
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1513,7 +1513,6 @@ Octopus.Client.Model
Octopus.Client.Model.Resource
{
.ctor()
Boolean ApplyToDynamicallyReferencedPackages { get; set; }
Nullable<Int32> DeleteUnreleasedPackagesAfterDays { get; set; }
}
abstract class BuiltInTasks
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,5 @@ public class BuiltInRepositoryConfigurationResource : Resource
{
[Writeable]
public int? DeleteUnreleasedPackagesAfterDays { get; set; }

[Writeable]
public bool ApplyToDynamicallyReferencedPackages { get; set; }
}
}
3 changes: 2 additions & 1 deletion source/Octopus.Client/Serialization/EndpointConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ public class EndpointConverter : InheritedClassConverter<EndpointResource, Commu
{CommunicationStyle.OfflineDrop, typeof (OfflineDropEndpointResource)},
{CommunicationStyle.AzureCloudService, typeof (CloudServiceEndpointResource)},
{CommunicationStyle.AzureWebApp, typeof (AzureWebAppEndpointResource)},
{CommunicationStyle.None, typeof (CloudRegionEndpointResource)}
{CommunicationStyle.None, typeof (CloudRegionEndpointResource)},
{CommunicationStyle.AzureServiceFabricCluster, typeof(ServiceFabricEndpointResource)}
};

protected override IDictionary<CommunicationStyle, Type> DerivedTypeMappings => EndpointTypes;
Expand Down

0 comments on commit 5fdc50d

Please sign in to comment.