| | |
| | | } |
| | | #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")] |