File: src\runtime\artifacts\obj\Microsoft.XmlSerializer.Generator\Release\netstandard2.0\ThisAssembly.cs
Project: Microsoft.XmlSerializer.Generator.csproj (dotnet-Microsoft.XmlSerializer.Generator)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
namespace Microsoft.XmlSerializer.Generator
{
    internal static class ThisAssembly
    {
        internal const string PackageVersion = "12.0.0-alpha.1.26475.135";
        internal const string AssemblyVersion = "11.0.0.0";
        internal const string Version = "11.0.0.0";
        internal const string PreReleaseLabel = "";

        internal static string InformationalVersion
        {
            get
            {
                if (string.IsNullOrEmpty(PreReleaseLabel))
                {
                    return PackageVersion;
                }
                else
                {
                    return $"{PackageVersion}-{PreReleaseLabel}";
                }
            }
        }
    }
}