diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-05-16 20:01:52 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-05-16 20:01:52 -0400 |
commit | 9d86f20ca728811c1da908337a4d5e7a998e5b48 (patch) | |
tree | 876f55422670da087740520731007e68e226678a /src/SMAPI.Web.LegacyRedirects/Program.cs | |
parent | 5e6f1640dcb8e30a44f8ff07572874850b12cc2e (diff) | |
download | SMAPI-9d86f20ca728811c1da908337a4d5e7a998e5b48.tar.gz SMAPI-9d86f20ca728811c1da908337a4d5e7a998e5b48.tar.bz2 SMAPI-9d86f20ca728811c1da908337a4d5e7a998e5b48.zip |
migrate subdomain redirects to Azure
Diffstat (limited to 'src/SMAPI.Web.LegacyRedirects/Program.cs')
-rw-r--r-- | src/SMAPI.Web.LegacyRedirects/Program.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/SMAPI.Web.LegacyRedirects/Program.cs b/src/SMAPI.Web.LegacyRedirects/Program.cs deleted file mode 100644 index 6adee877..00000000 --- a/src/SMAPI.Web.LegacyRedirects/Program.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.Hosting; - -namespace SMAPI.Web.LegacyRedirects -{ - /// <summary>The main app entry point.</summary> - public class Program - { - /********* - ** Public methods - *********/ - /// <summary>The main app entry point.</summary> - /// <param name="args">The command-line arguments.</param> - public static void Main(string[] args) - { - Host - .CreateDefaultBuilder(args) - .ConfigureWebHostDefaults(builder => builder.UseStartup<Startup>()) - .Build() - .Run(); - } - } -} |