Skip to content

Commit

Permalink
Updated to Cofoundry 0.9.2 and fixed breaking change.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Mitchell committed Aug 23, 2021
1 parent 81044a9 commit 68deb4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cofoundry.Web" Version="0.9.1" />
<PackageReference Include="Hangfire" Version="1.7.19" />
<PackageReference Include="Cofoundry.Web" Version="0.9.2" />
<PackageReference Include="Hangfire" Version="1.7.24" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void Initialize(IApplicationBuilder app)

if (_hangfireSettings.EnableHangfireDashboard && !_adminSettings.Disabled)
{
var adminPath = FilePathHelper.CombineVirtualPath(_adminSettings.DirectoryName, "hangfire");
var adminPath = RelativePathHelper.Combine(_adminSettings.DirectoryName, "hangfire");
app.UseHangfireDashboard(adminPath, new DashboardOptions
{
Authorization = new IDashboardAuthorizationFilter[] { new HangfireDashboardAuthorizationFilter() },
Expand Down
2 changes: 1 addition & 1 deletion src/HangfireSample/HangfireSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cofoundry.Web.Admin" Version="0.9.1" />
<PackageReference Include="Cofoundry.Web.Admin" Version="0.9.2" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 68deb4f

Please sign in to comment.