Skip to content

Commit

Permalink
Bump Yarp.ReverseProxy to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinchalet committed Oct 27, 2023
1 parent c01eb62 commit 8f0aba1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<PackageVersion Include="Quartz.Extensions.Hosting" Version="3.5.0" />
<PackageVersion Include="Spectre.Console" Version="0.46.0" />
<PackageVersion Include="System.Linq.Async" Version="6.0.1" />
<PackageVersion Include="Yarp.ReverseProxy" Version="2.0.0" />
<PackageVersion Include="Yarp.ReverseProxy" Version="2.0.1" />
</ItemGroup>

</Project>
6 changes: 5 additions & 1 deletion samples/Mimban/Mimban.Server/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@
// Register the Quartz.NET service and configure it to block shutdown until jobs are complete.
builder.Services.AddQuartzHostedService(options => options.WaitForJobsToComplete = true);

builder.Services.AddDbContext<DbContext>(options => options.UseSqlite($"Filename={Path.Combine(Path.GetTempPath(), "openiddict-mimban-server.sqlite3")}").UseOpenIddict());
builder.Services.AddDbContext<DbContext>(options =>
{
options.UseSqlite($"Filename={Path.Combine(Path.GetTempPath(), "openiddict-mimban-server.sqlite3")}");
options.UseOpenIddict();
});

builder.Services.AddOpenIddict()

Expand Down

0 comments on commit 8f0aba1

Please sign in to comment.