Skip to content

Commit 68deb4f

Browse files
author
Joel Mitchell
committed
Updated to Cofoundry 0.9.2 and fixed breaking change.
1 parent 81044a9 commit 68deb4f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Cofoundry.Plugins.BackgroundTasks.Hangfire/Cofoundry.Plugins.BackgroundTasks.Hangfire.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Cofoundry.Web" Version="0.9.1" />
19-
<PackageReference Include="Hangfire" Version="1.7.19" />
18+
<PackageReference Include="Cofoundry.Web" Version="0.9.2" />
19+
<PackageReference Include="Hangfire" Version="1.7.24" />
2020
</ItemGroup>
2121
</Project>

src/Cofoundry.Plugins.BackgroundTasks.Hangfire/Startup/HangfireServerInitializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public void Initialize(IApplicationBuilder app)
3838

3939
if (_hangfireSettings.EnableHangfireDashboard && !_adminSettings.Disabled)
4040
{
41-
var adminPath = FilePathHelper.CombineVirtualPath(_adminSettings.DirectoryName, "hangfire");
41+
var adminPath = RelativePathHelper.Combine(_adminSettings.DirectoryName, "hangfire");
4242
app.UseHangfireDashboard(adminPath, new DashboardOptions
4343
{
4444
Authorization = new IDashboardAuthorizationFilter[] { new HangfireDashboardAuthorizationFilter() },

src/HangfireSample/HangfireSample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Cofoundry.Web.Admin" Version="0.9.1" />
10+
<PackageReference Include="Cofoundry.Web.Admin" Version="0.9.2" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

0 commit comments

Comments
 (0)