Skip to content

Commit

Permalink
Remove commit hash from SDK version (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
adams85 authored Jul 26, 2023
1 parent 939f897 commit e3c33cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ConfigCatClient/ConfigCatClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace ConfigCat.Client;
/// </summary>
public sealed class ConfigCatClient : IConfigCatClient
{
private static readonly string Version = typeof(ConfigCatClient).GetTypeInfo().Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()!.InformationalVersion;
private static readonly string Version = typeof(ConfigCatClient).GetTypeInfo().Assembly.GetName().Version!.ToString(fieldCount: 3);

internal static readonly ConfigCatClientCache Instances = new();

Expand Down

0 comments on commit e3c33cb

Please sign in to comment.