Files
runner/src/Sdk/Common/EmbeddedVersionInfo.cs
Tingluo Huang 91b7e7a07a delete more unused code. (#230)
* delete more unused code.

* pr feedback.
2019-12-17 16:47:14 -05:00

22 lines
710 B
C#

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
public const String ActionsProductVersion = "8.0";
}
}