Skip to content

Commit afda26d

Browse files
author
Joel Mitchell
committed
Fixed bug with class naming in latest Cofoundry build
1 parent fa6b6bb commit afda26d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

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

1717
<ItemGroup>
18-
<PackageReference Include="Cofoundry.Web" Version="0.6.2-feaure-360-netc-0028" />
18+
<PackageReference Include="Cofoundry.Web" Version="0.7.0" />
1919
<PackageReference Include="Hangfire" Version="1.7.11" />
2020
</ItemGroup>
2121
</Project>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ IHangfireServerInitializer hangfireServerInitializer
3131

3232
public int Ordering { get; } = (int)StartupTaskOrdering.Normal;
3333

34-
public ICollection<Type> RunBefore { get; } = new Type[] { typeof(AddEndpointRoutesConfigurationTask) };
34+
public ICollection<Type> RunBefore { get; } = new Type[] { typeof(AddEndpointRoutesStartupConfigurationTask) };
3535

3636
public ICollection<Type> RunAfter { get; } = new Type[] { typeof(AutoUpdateMiddlewareStartupConfigurationTask) };
3737

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.6.2-feaure-360-netc-0028" />
10+
<PackageReference Include="Cofoundry.Web.Admin" Version="0.7.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

0 commit comments

Comments
 (0)