Revert "Convert to .NET 5 Project"

This commit is contained in:
N00MKRAD
2021-02-09 16:07:57 +01:00
committed by GitHub
parent 2b2cfa1166
commit babfe6e744
14 changed files with 591 additions and 548 deletions

View File

@@ -371,17 +371,17 @@ namespace Flowframes
private void discordBtn_Click(object sender, EventArgs e)
{
Process.Start(new ProcessStartInfo("https://discord.gg/eJHD2NSJRe") { UseShellExecute = true });
Process.Start("https://discord.gg/eJHD2NSJRe");
}
private void paypalBtn_Click(object sender, EventArgs e)
{
Process.Start(new ProcessStartInfo("https://www.paypal.com/paypalme/nmkd/10") { UseShellExecute = true });
Process.Start("https://www.paypal.com/paypalme/nmkd/10");
}
private void patreonBtn_Click(object sender, EventArgs e)
{
Process.Start(new ProcessStartInfo("https://patreon.com/n00mkrad") { UseShellExecute = true });
Process.Start("https://patreon.com/n00mkrad");
}
private void settingsBtn_Click(object sender, EventArgs e)