33 lines
1002 B
C#
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}";
|
|
}
|
|
}
|
|
} |