What is the best way to get build version number at runtime in web assembly client-side blazor app?In server side version I was able to use Assembly.GetEntryAssembly().GetCustomAttribute<AssemblyInformationalVersionAttribute>().InformationalVersion.ToString();
Combined with msbump package it was automatically generating new version for me with each new build. Is that possible to achieve at client side blazor too?