Skip to content

Commit 0f09ed9

Browse files
committed
Relocating providers
1 parent 668567c commit 0f09ed9

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

WinNUT_V2/WinNUT-Client_Common/Updater/GitHubUpdateProvider.vb renamed to WinNUT_V2/WinNUT-Client_Common/Updater/Providers/GitHubUpdateProvider.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Imports System.ComponentModel
1111
Imports System.Threading
1212
Imports Octokit
1313

14-
Namespace Updater
14+
Namespace Updater.Providers
1515

1616
Public Class GitHubUpdateProvider
1717
Implements IUpdateProvider

WinNUT_V2/WinNUT-Client_Common/Updater/IUpdateProvider.vb renamed to WinNUT_V2/WinNUT-Client_Common/Updater/Providers/IUpdateProvider.vb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
Imports System.ComponentModel
1111
Imports Octokit
1212

13-
Namespace Updater
13+
Namespace Updater.Providers
1414

1515
''' <summary>
16-
''' Defines an object that handles checking and retrieving updates for WinNUT.
16+
''' Defines an object that handles checking and retrieving updates for WinNUT. While methods of checking for and
17+
''' installing updates can differ, there will always be a GitHub Release object associated with an update.
1718
''' </summary>
1819
Public Interface IUpdateProvider
1920
Inherits IComponent

WinNUT_V2/WinNUT-Client_Common/WinNUT-Client_Common.vbproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,9 @@
9797
<DesignTimeSharedInput>True</DesignTimeSharedInput>
9898
</Compile>
9999
<Compile Include="Nut_Socket.vb" />
100-
<Compile Include="Updater\GitHubUpdateProvider.vb" />
101-
<Compile Include="Updater\IUpdateProvider.vb" />
100+
<Compile Include="Updater\Providers\BaseUpdateProvider.vb" />
101+
<Compile Include="Updater\Providers\GitHubUpdateProvider.vb" />
102+
<Compile Include="Updater\Providers\IUpdateProvider.vb" />
102103
<Compile Include="Updater\CheckForUpdateCompletedEventArgs.vb" />
103104
<Compile Include="Updater\UpdateProgressChangedEventArgs.vb" />
104105
<Compile Include="UPS_Device.vb" />

0 commit comments

Comments
 (0)