How can I read the settings of my VISX template

2

I created a template that automates various development tasks of a Portuguese platform, now because of an extension anomaly I had to create a configuration page associated with my extension where it is possible to define a set of configurations. Your look is in the image below.

WhenreadingthisconfigurationthevaluethatisreturnedisalwaysthedefaultvaluethatisassociatedwithC:\ProgramFiles(x86)\PRIMAVERA\SG100\APL\andnotC:\

publicclassVSOptionPageGrid:DialogPage{[Category("ERP Settings")]
        [DisplayName("Installation Path")]
        [Description("The local where are installed all the PRIMAVERA assemblies.")]
        public string Path { get; set; } = @"C:\Program Files (x86)\PRIMAVERA\SG100\APL\";
    }
}
    
asked by anonymous 12.10.2018 / 21:03

0 answers