From 17ee580d85fcaeabfe8c9dc5ce83ddf225f30b64 Mon Sep 17 00:00:00 2001 From: igeekfan Date: Wed, 2 Aug 2023 22:25:13 +0800 Subject: [PATCH] =?UTF-8?q?#56=20=E9=85=8D=E7=BD=AE=E9=97=AE=E9=A2=98=20#5?= =?UTF-8?q?5=20=E6=9E=9A=E4=B8=BE=E9=97=AE=E9=A2=98=20=E5=B7=B2PR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- samples/AspNetCoreApi/Properties/launchSettings.json | 2 +- .../IGeekFan.AspNetCore.Knife4jUI.csproj | 6 +++--- test/Basic/Basic.csproj | 4 ++-- test/Basic/Properties/launchSettings.json | 2 +- test/Knife4jUIDemo/Knife4jUIDemo.csproj | 5 ++--- test/WebSites/OAuth2Integration/Startup.cs | 2 +- 6 files changed, 10 insertions(+), 11 deletions(-) diff --git a/samples/AspNetCoreApi/Properties/launchSettings.json b/samples/AspNetCoreApi/Properties/launchSettings.json index 3159a44..4fe244c 100644 --- a/samples/AspNetCoreApi/Properties/launchSettings.json +++ b/samples/AspNetCoreApi/Properties/launchSettings.json @@ -6,7 +6,7 @@ "dotnetRunMessages": true, "launchBrowser": true, "launchUrl": "swagger", - "applicationUrl": "https://localhost:7030;http://localhost:5030", + "applicationUrl": "http://localhost:5000", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/src/IGeekFan.AspNetCore.Knife4jUI/IGeekFan.AspNetCore.Knife4jUI.csproj b/src/IGeekFan.AspNetCore.Knife4jUI/IGeekFan.AspNetCore.Knife4jUI.csproj index 903c919..14a6bad 100644 --- a/src/IGeekFan.AspNetCore.Knife4jUI/IGeekFan.AspNetCore.Knife4jUI.csproj +++ b/src/IGeekFan.AspNetCore.Knife4jUI/IGeekFan.AspNetCore.Knife4jUI.csproj @@ -11,14 +11,14 @@ git https://github.com/luoyunchong/IGeekFan.AspNetCore.Knife4jUI.git IGeekFan.AspNetCore.Knife4jUI - 0.0.14 + 0.0.15 igeekfan;xiaoym; true Apache License 2.0 - 0.0.14.0 - 0.0.14.0 + 0.0.15.0 + 0.0.15.0 diff --git a/test/Basic/Basic.csproj b/test/Basic/Basic.csproj index 997cadb..c6d3936 100644 --- a/test/Basic/Basic.csproj +++ b/test/Basic/Basic.csproj @@ -7,7 +7,7 @@ - + @@ -17,6 +17,6 @@ - + \ No newline at end of file diff --git a/test/Basic/Properties/launchSettings.json b/test/Basic/Properties/launchSettings.json index 6c2b9f3..e8f0f7a 100644 --- a/test/Basic/Properties/launchSettings.json +++ b/test/Basic/Properties/launchSettings.json @@ -4,7 +4,7 @@ "commandName": "Project", "launchBrowser": true, "launchUrl": "", - "applicationUrl": "http://localhost:5002;https://localhost:5003", + "applicationUrl": "http://localhost:5000", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/test/Knife4jUIDemo/Knife4jUIDemo.csproj b/test/Knife4jUIDemo/Knife4jUIDemo.csproj index 8c6ea47..e1c904d 100644 --- a/test/Knife4jUIDemo/Knife4jUIDemo.csproj +++ b/test/Knife4jUIDemo/Knife4jUIDemo.csproj @@ -11,14 +11,13 @@ - - + - + diff --git a/test/WebSites/OAuth2Integration/Startup.cs b/test/WebSites/OAuth2Integration/Startup.cs index c9ead99..af28e2a 100644 --- a/test/WebSites/OAuth2Integration/Startup.cs +++ b/test/WebSites/OAuth2Integration/Startup.cs @@ -39,7 +39,7 @@ namespace OAuth2Integration .AddCookie() .AddIdentityServerAuthentication(c => { - c.Authority = "http://localhost:55202/auth-server/"; + c.Authority = "http://localhost:5000/auth-server/"; c.RequireHttpsMetadata = false; c.ApiName = "api"; });