#56 配置问题 #55 枚举问题 已PR

This commit is contained in:
igeekfan 2023-08-02 22:25:13 +08:00
parent fb383e2c3c
commit 17ee580d85
6 changed files with 10 additions and 11 deletions

View File

@ -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"
}

View File

@ -11,14 +11,14 @@
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/luoyunchong/IGeekFan.AspNetCore.Knife4jUI.git</RepositoryUrl>
<RootNamespace>IGeekFan.AspNetCore.Knife4jUI</RootNamespace>
<Version>0.0.14</Version>
<Version>0.0.15</Version>
<Company />
<Authors>igeekfan;xiaoym;</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>Apache License 2.0</Copyright>
<PackageLicenseExpression></PackageLicenseExpression>
<AssemblyVersion>0.0.14.0</AssemblyVersion>
<FileVersion>0.0.14.0</FileVersion>
<AssemblyVersion>0.0.15.0</AssemblyVersion>
<FileVersion>0.0.15.0</FileVersion>
</PropertyGroup>
<!-- Using SourceLink -->

View File

@ -7,7 +7,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IGeekFan.AspNetCore.Knife4jUI" Version="0.0.13" />
<!--<PackageReference Include="IGeekFan.AspNetCore.Knife4jUI" Version="0.0.13" />-->
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.4.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUi" Version="6.4.0" />
</ItemGroup>
@ -17,6 +17,6 @@
</ItemGroup>
<ItemGroup>
<!--<ProjectReference Include="..\..\src\IGeekFan.AspNetCore.Knife4jUI\IGeekFan.AspNetCore.Knife4jUI.csproj" />-->
<ProjectReference Include="..\..\src\IGeekFan.AspNetCore.Knife4jUI\IGeekFan.AspNetCore.Knife4jUI.csproj" />
</ItemGroup>
</Project>

View File

@ -4,7 +4,7 @@
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "",
"applicationUrl": "http://localhost:5002;https://localhost:5003",
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}

View File

@ -11,14 +11,13 @@
</PropertyGroup>
<ItemGroup>
<!--<PackageReference Include="IGeekFan.AspNetCore.Knife4jUI" Version="0.0.9" />-->
<PackageReference Include="IGeekFan.AspNetCore.Knife4jUI" Version="0.0.13" />
<!--<PackageReference Include="IGeekFan.AspNetCore.Knife4jUI" Version="0.0.13" />-->
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
</ItemGroup>
<ItemGroup>
<!--<ProjectReference Include="..\..\src\IGeekFan.AspNetCore.Knife4jUI\IGeekFan.AspNetCore.Knife4jUI.csproj" />-->
<ProjectReference Include="..\..\src\IGeekFan.AspNetCore.Knife4jUI\IGeekFan.AspNetCore.Knife4jUI.csproj" />
</ItemGroup>
<ItemGroup>

View File

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