Skip to content

Commit

Permalink
b0.0.4 MEGA COMMIT
Browse files Browse the repository at this point in the history
  • Loading branch information
MiranDaniel committed Sep 22, 2020
1 parent b5962ff commit 2dd2d8e
Show file tree
Hide file tree
Showing 44 changed files with 1,033 additions and 125 deletions.
Binary file modified automod-generator/.vs/automod-generator/v16/.suo
Binary file not shown.
195 changes: 195 additions & 0 deletions automod-generator/automod-generator/AboutBox.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

121 changes: 121 additions & 0 deletions automod-generator/automod-generator/AboutBox.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Net.Http;


namespace automod_generator
{
partial class AboutBox : Form
{
public AboutBox()
{
InitializeComponent();
}

#region Assembly Attribute Accessors

public string AssemblyTitle
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false);
if (attributes.Length > 0)
{
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0];
if (titleAttribute.Title != "")
{
return titleAttribute.Title;
}
}
return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase);
}
}

public string AssemblyVersion
{
get
{
return Assembly.GetExecutingAssembly().GetName().Version.ToString();
}
}

public string AssemblyDescription
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false);
if (attributes.Length == 0)
{
return "";
}
return ((AssemblyDescriptionAttribute)attributes[0]).Description;
}
}

public string AssemblyProduct
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false);
if (attributes.Length == 0)
{
return "";
}
return ((AssemblyProductAttribute)attributes[0]).Product;
}
}

public string AssemblyCopyright
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false);
if (attributes.Length == 0)
{
return "";
}
return ((AssemblyCopyrightAttribute)attributes[0]).Copyright;
}
}

public string AssemblyCompany
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false);
if (attributes.Length == 0)
{
return "";
}
return ((AssemblyCompanyAttribute)attributes[0]).Company;
}
}
#endregion

private void repoButton_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/MiranDaniel/automod-generator");
}

private void bugButton_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/MiranDaniel/automod-generator/issues/new");
}

private void contactButton_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://www.reddit.com/message/compose?to=/r/mirandaniel");
}

private void versionButton_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/MiranDaniel/automod-generator/releases/latest");
}
}
}
Loading

0 comments on commit 2dd2d8e

Please sign in to comment.