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"; });