File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/WeihanLi.Common/Helpers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public static LibraryInfo GetLibraryInfo(Assembly assembly)
49
49
;
50
50
return new LibraryInfo ( )
51
51
{
52
- FullVersion = assemblyInformation . InformationalVersion ,
52
+ LibraryFullVersion = assemblyInformation . InformationalVersion ,
53
53
LibraryVersion = informationalVersionSplit [ 0 ] ,
54
54
LibraryHash = informationalVersionSplit . Length > 1 ? informationalVersionSplit [ 1 ] : string . Empty ,
55
55
RepositoryUrl = repositoryUrl
@@ -243,7 +243,7 @@ public class LibraryInfo
243
243
public required string LibraryVersion { get ; init ; }
244
244
public required string LibraryHash { get ; init ; }
245
245
public required string RepositoryUrl { get ; init ; }
246
- public string FullVersion { get => _fullVersion ?? LibraryVersion ; init => _fullVersion = value ; }
246
+ public string LibraryFullVersion { get => _fullVersion ?? LibraryVersion ; init => _fullVersion = value ; }
247
247
}
248
248
249
249
public class RuntimeInfo
You can’t perform that action at this time.
0 commit comments