17 lines
461 B
C#
17 lines
461 B
C#
// Copyright (C) 2024 Intro-Skipper Contributors <intro-skipper.org>
|
|
// SPDX-License-Identifier: GNU General Public License v3.0 only.
|
|
|
|
namespace IntroSkipper.Helper
|
|
{
|
|
/// <summary>
|
|
/// Gets the commit used to build the plugin.
|
|
/// </summary>
|
|
public static class Commit
|
|
{
|
|
/// <summary>
|
|
/// Gets the commit hash used to build the plugin.
|
|
/// </summary>
|
|
public static string CommitHash => string.Empty;
|
|
}
|
|
}
|