diff --git a/VectoCommon/VectoCommon/InputData/DeclarationInputData.cs b/VectoCommon/VectoCommon/InputData/DeclarationInputData.cs index 201e19b047271bdee2cf405de8c669cded1974f5..92203b880c2a822b277ae468e0e4a6631047bce3 100644 --- a/VectoCommon/VectoCommon/InputData/DeclarationInputData.cs +++ b/VectoCommon/VectoCommon/InputData/DeclarationInputData.cs @@ -80,16 +80,16 @@ namespace TUGraz.VectoCommon.InputData public string SourceFile { get; set; } + /// <summary> + /// returns the version of the namespace uri + /// </summary> public string SourceVersion { get; set; } /// <summary> /// In case of components loaded from XML files, this is the name of the XSD Type /// </summary> public string Type { get; set; } - - public string SourceTypeVersion { get; set; } - - + public string SourcePath => SourceFile != null ? Path.GetDirectoryName(Path.GetFullPath(SourceFile)) : null; }