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\";
}
}