Browse Source

修改端口号

lcl 1 year ago
parent
commit
afd9dec635
3 changed files with 4 additions and 3 deletions
  1. 2 1
      AppStart/Helper/RecommandKingHelper.cs
  2. 1 1
      Program.cs
  3. 1 1
      Properties/launchSettings.json

+ 2 - 1
AppStart/Helper/RecommandKingHelper.cs

@@ -39,8 +39,9 @@ namespace MySystem
             string checkFlag = function.ReadInstance("/RecommandKing/" + today + ".txt");
             if(!string.IsNullOrEmpty(checkFlag))
             {
-                function.WritePage("/RecommandKing/", today + ".txt", DateTime.Now.ToString());
+                return;
             }
+            function.WritePage("/RecommandKing/", today + ".txt", DateTime.Now.ToString());
             List<int> Historys = new List<int>();
             Historys.Add(565);
             Historys.Add(139473);

+ 1 - 1
Program.cs

@@ -22,7 +22,7 @@ namespace MySystem
                 .ConfigureWebHostDefaults(webBuilder =>
                 {
                     webBuilder
-                    .UseUrls("http://*:5046")
+                    .UseUrls("http://*:5047")
                     .UseKestrel()
                     .UseContentRoot(Directory.GetCurrentDirectory())
                     .UseIISIntegration()

+ 1 - 1
Properties/launchSettings.json

@@ -21,7 +21,7 @@
       "environmentVariables": {
         "ASPNETCORE_ENVIRONMENT": "Development"
       },
-      "applicationUrl": "http://127.0.0.1:5046"
+      "applicationUrl": "http://127.0.0.1:5047"
     }
   }
 }