| File: src\runtime\artifacts\obj\Microsoft.XmlSerializer.Generator\Release\netstandard2.0\ThisAssembly.cs | |
| Project: src\runtime\src\libraries\Microsoft.XmlSerializer.Generator\src\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 = "11.0.0-preview.7.26371.101"; 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}"; } } } } }