internal static string GetAssemblyVersion()

in src/Aspire.Hosting.AWS/SdkUtilities.cs [29:33]


    internal static string GetAssemblyVersion()
    {
        var attribute = typeof(AWSLifecycleHook).Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>();
        return attribute != null ? attribute.InformationalVersion.Split('+')[0] : "Unknown";
    }