public static ProjectProperties Create(string category, string propertyName, string value)
        {
            var data = new PropertyPageData()
            {
                Category     = category,
                PropertyName = propertyName,
                Value        = value,
            };

            return(Create(data));
        }
Beispiel #2
0
        public static ProjectProperties Create(string category, string propertyName, string value)
        {
            var data = new PropertyPageData(category, propertyName, value);

            return(Create(data));
        }