chr
2026-04-08 53e656200368a983e563550e2cc1acbc6d86b729
OpenTap/Engine/TestPlan.cs
@@ -480,12 +480,27 @@
        }
        #endregion
        private string path;
        /// <summary>
        /// Gets where this plan was last saved or loaded from. It might be null.
        /// </summary>
        [XmlIgnore]
        [AnnotationIgnore]
        public string Path { get; internal set; }
        public string Path
        {
            get => path; internal set
            {
                path = value;
                VisualPath = value;
            }
        }
        /// <summary>
        /// 虚拟路径
        /// </summary>
        [XmlIgnore]
        [AnnotationIgnore]
        public string VisualPath { get; set; }
        /// <summary> The directory where the test plan is stored.</summary>
        [MetaData(macroName: "TestPlanDir")]