From 42f32e61e95c0695b39d2c0e2e08995be1ff3f0c Mon Sep 17 00:00:00 2001 From: mclausen Date: Thu, 17 Jan 2019 17:15:22 +0100 Subject: [PATCH] - Added PropertyType to The IValueConnector --- src/Umbraco.Core/Deploy/IValueConnector.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Deploy/IValueConnector.cs b/src/Umbraco.Core/Deploy/IValueConnector.cs index 92589ab6cf..81df59f1f1 100644 --- a/src/Umbraco.Core/Deploy/IValueConnector.cs +++ b/src/Umbraco.Core/Deploy/IValueConnector.cs @@ -20,9 +20,10 @@ namespace Umbraco.Core.Deploy /// Gets the deploy property value corresponding to a content property value, and gather dependencies. /// /// The content property value. + /// The value property type /// The content dependencies. /// The deploy property value. - string ToArtifact(object value, ICollection dependencies); + string ToArtifact(object value, PropertyType propertyType, ICollection dependencies); /// /// Gets the content property value corresponding to a deploy property value.