Skip to content

Commit

Permalink
Merge pull request #8983 from ivangrek/plugin/naming
Browse files Browse the repository at this point in the history
Move BackgroundFetch plugin to "GitExtensions.Plugins" namespace
  • Loading branch information
RussKie committed Mar 12, 2021
2 parents 4626dc1 + 9507887 commit 3c75c4b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion GitExtensions.sln
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReleaseNotesGenerator", "Pl
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TranslationApp", "TranslationApp\TranslationApp.csproj", "{7C106FAC-CB81-4D37-BE98-E7F6A5BDD143}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BackgroundFetch", "Plugins\BackgroundFetch\BackgroundFetch.csproj", "{F261BCD1-F5F7-4664-A230-E52032E6E9FD}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitExtensions.Plugins.BackgroundFetch", "Plugins\BackgroundFetch\GitExtensions.Plugins.BackgroundFetch.csproj", "{F261BCD1-F5F7-4664-A230-E52032E6E9FD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitExtensions.Plugins.AutoCompileSubmodules", "Plugins\AutoCompileSubmodules\GitExtensions.Plugins.AutoCompileSubmodules.csproj", "{7E5433F4-DD13-4D8E-95B2-59B4FFE7D636}"
EndProject
Expand Down
4 changes: 2 additions & 2 deletions Plugins/BackgroundFetch/BackgroundFetchPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
using System.Linq;
using System.Reactive.Concurrency;
using System.Reactive.Linq;
using BackgroundFetch.Properties;
using GitCommands;
using GitExtensions.Plugins.BackgroundFetch.Properties;
using GitExtUtils;
using GitUIPluginInterfaces;
using ResourceManager;

namespace BackgroundFetch
namespace GitExtensions.Plugins.BackgroundFetch
{
[Export(typeof(IGitPlugin))]
public class BackgroundFetchPlugin : GitPluginBase, IGitPluginForRepository
Expand Down
6 changes: 3 additions & 3 deletions Plugins/BackgroundFetch/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Setup/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@
<File Source="$(var.ArtifactsPublishPath)\Plugins\GitExtensions.Plugins.AutoCompileSubmodules.dll" />
</Component>
<Component Id="BackgroundFetch.dll" Guid="*">
<File Source="$(var.ArtifactsPublishPath)\Plugins\BackgroundFetch.dll" />
<File Source="$(var.ArtifactsPublishPath)\Plugins\GitExtensions.Plugins.BackgroundFetch.dll" />
</Component>
<Component Id="CreateLocalBranches.dll" Guid="*">
<File Source="$(var.ArtifactsPublishPath)\Plugins\CreateLocalBranches.dll" />
Expand Down

0 comments on commit 3c75c4b

Please sign in to comment.