Files
2025-05-21 17:11:38 +02:00

33 lines
1002 B
C#

using System;
using System.Reflection;
using System.Windows.Forms;
namespace CrapFixer
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
/// <summary>
/// Retrieves the version of the app
/// </summary>
/// <returns>The application version in the format "major.minor.build"</returns>
public static string GetAppVersion()
{
// Get the version of the current executing assembly
Version version = Assembly.GetExecutingAssembly().GetName().Version;
// Return the version in the format "major.minor.build"
return $"{version.Major}.{version.Minor}.{version.Build}";
}
}
}