We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc8b262 commit f580ac8Copy full SHA for f580ac8
1 file changed
src/Solcast/Clients/BaseClient.cs
@@ -29,7 +29,8 @@ private static string GetAssemblyVersion()
29
typeof(AssemblyInformationalVersionAttribute)
30
);
31
32
- return attribute?.InformationalVersion ?? "1.0.0";
+ var version = attribute?.InformationalVersion ?? "1.0.0";
33
+ return version.Split('+')[0];
34
}
35
36
0 commit comments