// 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 = "11.0.0-preview.5.26268.104";
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}";
}
}
}
}
}
|