Files
runner/src/Sdk/Common/EmbeddedVersionInfo.cs
T

22 lines
710 B
C#
Raw Normal View History

2019-10-10 00:52:42 -04:00
using System;
using System.Runtime.CompilerServices;
namespace GitHub.Services.Common
{
[CompilerGenerated]
internal static class GeneratedVersionInfo
{
// Legacy values which preserve semantics from prior to the Assembly / File version split.
// See Toolsets\Version\Version.props for more details.
public const String MajorVersion = "16";
public const String MinorVersion = "0";
public const String ProductVersion = MajorVersion + "." + MinorVersion;
// Assembly version (i.e. strong name)
public const String AssemblyMajorVersion = "16";
// Derived versions
2019-12-17 16:47:14 -05:00
public const String ActionsProductVersion = "8.0";
2019-10-10 00:52:42 -04:00
}
}