如何从VSPackage获得我的选择的价值

时间:2018-10-12 17:57:40

标签: c# vsix

我使用程序包构建VSIX(项目模板),并创建属性网格(下图)。

enter image description here

现在,我想读取VSIX其他部分的值,但是返回的值始终是默认的C:\Program Files (x86)\PRIMAVERA\SG100\APL\而不是C:\

    public class VSOptionPageGrid: 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\";
    }
}

0 个答案:

没有答案