Skip to content

Commit cbbefc7

Browse files
committed
Renamed AppUpdater
1 parent 454ec53 commit cbbefc7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Libraries/SmartStore.Core/Packaging/Updater/ApplicationUpdater.cs renamed to src/Libraries/SmartStore.Core/Packaging/Updater/AppUpdater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
namespace SmartStore.Core.Packaging
1717
{
1818

19-
internal sealed class ApplicationUpdater : DisposableObject
19+
internal sealed class AppUpdater : DisposableObject
2020
{
2121
private const string UpdatePackagePath = "~/App_Data/Update";
2222

src/Libraries/SmartStore.Core/Plugins/PluginManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public static IEnumerable<string> IncompatiblePlugins
8585
/// </summary>
8686
public static void Initialize()
8787
{
88-
var updater = new ApplicationUpdater();
88+
var updater = new AppUpdater();
8989
if (updater.TryUpdate())
9090
{
9191
// [...]

src/Libraries/SmartStore.Core/SmartStore.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@
552552
<Compile Include="PagedList`T.cs" />
553553
<Compile Include="Properties\AssemblyInfo.cs" />
554554
<Compile Include="XmlHelper.cs" />
555-
<Compile Include="Packaging\Updater\ApplicationUpdater.cs" />
555+
<Compile Include="Packaging\Updater\AppUpdater.cs" />
556556
</ItemGroup>
557557
<ItemGroup>
558558
<None Include="packages.config" />

0 commit comments

Comments
 (0)