Browse Source

Merge branch 'sf-update' into feature/sf-api-gateway

pull/932/head
erikpique 6 years ago
committed by GitHub
parent
commit
92afaef8b4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions
  1. +0
    -1
      src/ApiGateways/ApiGw-Base/Program.cs
  2. +1
    -1
      src/Services/Identity/Identity.API/Identity.API.csproj
  3. +5
    -0
      src/Web/WebStatus/WebStatus.csproj

+ 0
- 1
src/ApiGateways/ApiGw-Base/Program.cs View File

@ -19,7 +19,6 @@ namespace OcelotApiGw
config.AddJsonFile(Path.Combine("configuration", "configuration.json")); config.AddJsonFile(Path.Combine("configuration", "configuration.json"));
config.AddCommandLine(args); config.AddCommandLine(args);
}) })
.UseStartup<Startup>()
.UseSerilog((builderContext, config) => .UseSerilog((builderContext, config) =>
{ {
config config


+ 1
- 1
src/Services/Identity/Identity.API/Identity.API.csproj View File

@ -27,9 +27,9 @@
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" /> <PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
<PackageReference Include="IdentityServer4.AspNetIdentity" Version="2.1.0" /> <PackageReference Include="IdentityServer4.AspNetIdentity" Version="2.1.0" />
<PackageReference Include="IdentityServer4.EntityFramework" Version="2.1.1" /> <PackageReference Include="IdentityServer4.EntityFramework" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Redis" Version="0.3.3" />
<PackageReference Include="Serilog.AspNetCore" Version="2.1.1" /> <PackageReference Include="Serilog.AspNetCore" Version="2.1.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" /> <PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Redis" Version="2.2.0-preview2-35157" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="3.0.0" /> <PackageReference Include="Swashbuckle.AspNetCore" Version="3.0.0" />
<PackageReference Include="Microsoft.Web.LibraryManager.Build" Version="1.0.163" /> <PackageReference Include="Microsoft.Web.LibraryManager.Build" Version="1.0.163" />
</ItemGroup> </ItemGroup>


+ 5
- 0
src/Web/WebStatus/WebStatus.csproj View File

@ -27,4 +27,9 @@
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" /> <PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\BuildingBlocks\HealthChecks\src\Microsoft.AspNetCore.HealthChecks\Microsoft.AspNetCore.HealthChecks.csproj" />
<ProjectReference Include="..\..\BuildingBlocks\HealthChecks\src\Microsoft.Extensions.HealthChecks\Microsoft.Extensions.HealthChecks.csproj" />
</ItemGroup>
</Project> </Project>

Loading…
Cancel
Save