diff --git a/Revit/Speckle.Revit.Api/IRevitDocumentProxy.cs b/Revit/Speckle.Revit.Api/IRevitDocumentProxy.cs index 32df094..8bf7ac4 100644 --- a/Revit/Speckle.Revit.Api/IRevitDocumentProxy.cs +++ b/Revit/Speckle.Revit.Api/IRevitDocumentProxy.cs @@ -10,7 +10,7 @@ namespace Speckle.Revit.Api; [Proxy( typeof(Document), ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface, - ["PlanTopology", "PlanTopologies", "TypeOfStorage", "Equals"] + new[] { "PlanTopology", "PlanTopologies", "TypeOfStorage", "Equals" } )] [SuppressMessage("Maintainability", "CA1506:Avoid excessive class coupling")] public partial interface IRevitDocumentProxy : IRevitDocument; @@ -18,28 +18,28 @@ public partial interface IRevitDocumentProxy : IRevitDocument; [Proxy( typeof(ForgeTypeId), ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface, - ["Equals"] + new[] { "Equals" } )] public partial interface IRevitForgeTypeIdProxy : IRevitForgeTypeId; [Proxy( typeof(Element), ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface, - ["Parameter", "BoundingBox", "Geometry"] + new[] { "Parameter", "BoundingBox", "Geometry" } )] public partial interface IRevitElementProxy : IRevitElement; [Proxy( typeof(Category), ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface, - ["AllowsVisibilityControl", "Visible"] + new[] { "AllowsVisibilityControl", "Visible" } )] public partial interface IRevitCategoryProxy : IRevitCategory; [Proxy( typeof(ElementId), ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface, - ["Equals"] + new[] { "Equals" } )] public partial interface IRevitElementIdProxy : IRevitElementId; diff --git a/Revit/Speckle.Revit.Api/IRevitModelCurveArrArrayProxy.cs b/Revit/Speckle.Revit.Api/IRevitModelCurveArrArrayProxy.cs index 546828b..40ba31c 100644 --- a/Revit/Speckle.Revit.Api/IRevitModelCurveArrArrayProxy.cs +++ b/Revit/Speckle.Revit.Api/IRevitModelCurveArrArrayProxy.cs @@ -8,7 +8,7 @@ namespace Speckle.Revit.Api; [Proxy( typeof(ModelCurveArrArray), ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface, - ["GetEnumerator", "Item", "get_Item", "set_Item"] + new[] { "GetEnumerator", "Item", "get_Item", "set_Item" } )] public partial interface IRevitModelCurveArrArrayProxy : IRevitModelCurveArrArray; diff --git a/Revit/Speckle.Revit.Api/IRevitModelCurveArrayProxy.cs b/Revit/Speckle.Revit.Api/IRevitModelCurveArrayProxy.cs index 2a89012..473cc55 100644 --- a/Revit/Speckle.Revit.Api/IRevitModelCurveArrayProxy.cs +++ b/Revit/Speckle.Revit.Api/IRevitModelCurveArrayProxy.cs @@ -8,7 +8,7 @@ namespace Speckle.Revit.Api; [Proxy( typeof(ModelCurveArray), ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface, - ["GetEnumerator", "Item", "get_Item", "set_Item"] + new[] { "GetEnumerator", "Item", "get_Item", "set_Item" } )] public partial interface IRevitModelCurveArrayProxy : IRevitModelCurveArray; diff --git a/Revit/Speckle.Revit.Api/IRevitModelCurveProxy.cs b/Revit/Speckle.Revit.Api/IRevitModelCurveProxy.cs index df0d7a4..ce24da3 100644 --- a/Revit/Speckle.Revit.Api/IRevitModelCurveProxy.cs +++ b/Revit/Speckle.Revit.Api/IRevitModelCurveProxy.cs @@ -19,7 +19,7 @@ public partial interface IRevitXYZProxy : IRevitXYZ; [Proxy( typeof(LocationCurve), ImplementationOptions.UseExtendedInterfaces | ImplementationOptions.ProxyForBaseInterface, - ["JoinType", "ElementsAtJoin"] + new[] { "JoinType", "ElementsAtJoin" } )] public partial interface IRevitLocationCurveProxy : IRevitLocationCurve;