Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Dec 4, 2023
1 parent ad7bbee commit 20f8779
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions tools/MultipartUploader/Program.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
namespace MultipartUploader
namespace MultipartUploader;

internal static class Program
{
internal static class Program
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
// To customize application configuration such as set high DPI settings or default font, see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}

0 comments on commit 20f8779

Please sign in to comment.