DynamoVisualProgramming.ZeroTouchLibrary by Autodesk

<PackageReference Include="DynamoVisualProgramming.ZeroTouchLibrary" Version="2.0.0-beta4036" />

 GeometrySettings

using Autodesk.DesignScript.Runtime; using System.ComponentModel; namespace Autodesk.DesignScript.Geometry { [Category("Configuration")] internal class GeometrySettings { public static string RootModulePath { get; set; } [SupressImportIntoVM] public static bool GeometryXmlProperties { get; set; } [SupressImportIntoVM] public static string GeometryFactoryFilePath { get; set; } [SupressImportIntoVM] public static string PersistenceManagerFilePath { get; set; } static GeometrySettings() { Reset(); } private GeometrySettings() { } internal static void Reset() { RootModulePath = string.Empty; GeometryXmlProperties = false; } } }