Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 9752a19

Browse files
committed
Aggregate all the different settings files in one place
1 parent 44938c4 commit 9752a19

File tree

7 files changed

+7
-11
lines changed

7 files changed

+7
-11
lines changed

src/GitHub.VisualStudio/GitHub.VisualStudio.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -241,15 +241,15 @@
241241
<Compile Include="Base\TeamExplorerNavigationItemBase.cs" />
242242
<Compile Include="Base\TeamExplorerSectionBase.cs" />
243243
<Compile Include="Helpers\Browser.cs" />
244-
<Compile Include="Helpers\Colors.cs" />
245-
<Compile Include="Helpers\Constants.cs" />
244+
<Compile Include="Settings\Colors.cs" />
245+
<Compile Include="Settings\Constants.cs" />
246246
<Compile Include="Services\ConnectionManager.cs" />
247-
<Compile Include="Services\OptionsPage.cs">
247+
<Compile Include="Settings\OptionsPage.cs">
248248
<SubType>Component</SubType>
249249
</Compile>
250250
<Compile Include="Services\Program.cs" />
251251
<Compile Include="Services\SharedResources.cs" />
252-
<Compile Include="Settings.cs" />
252+
<Compile Include="Settings\Settings.cs" />
253253
<Compile Include="Base\PackageBase.cs" />
254254
<Compile Include="Resources.Designer.cs">
255255
<AutoGen>True</AutoGen>
@@ -276,7 +276,7 @@
276276
<Compile Include="Base\EnsureLoggedInSection.cs" />
277277
<Compile Include="UI\DrawingExtensions.cs" />
278278
<Compile Include="UI\GitHubPane.cs" />
279-
<Compile Include="UI\Options\OptionsControl.xaml.cs">
279+
<Compile Include="UI\Settings\OptionsControl.xaml.cs">
280280
<DependentUpon>OptionsControl.xaml</DependentUpon>
281281
</Compile>
282282
<Compile Include="UI\Views\Controls\RepositoryCloneControl.xaml.cs">
@@ -416,7 +416,7 @@
416416
<Generator>MSBuild:Compile</Generator>
417417
<SubType>Designer</SubType>
418418
</Page>
419-
<Page Include="UI\Options\OptionsControl.xaml">
419+
<Page Include="UI\Settings\OptionsControl.xaml">
420420
<SubType>Designer</SubType>
421421
<Generator>MSBuild:Compile</Generator>
422422
<CustomToolNamespace>GitHub.VisualStudio.UI</CustomToolNamespace>
File renamed without changes.
File renamed without changes.

src/GitHub.VisualStudio/Services/OptionsPage.cs renamed to src/GitHub.VisualStudio/Settings/OptionsPage.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
using GitHub.Services;
1+
using GitHub.Settings;
22
using GitHub.VisualStudio.UI;
33
using Microsoft.VisualStudio.Shell;
44
using System;
5-
using System.Collections.Generic;
65
using System.ComponentModel;
7-
using System.Linq;
86
using System.Runtime.InteropServices;
9-
using System.Text;
10-
using System.Threading.Tasks;
117
using System.Windows;
128

139
namespace GitHub.VisualStudio
File renamed without changes.

src/GitHub.VisualStudio/UI/Options/OptionsControl.xaml renamed to src/GitHub.VisualStudio/UI/Settings/OptionsControl.xaml

File renamed without changes.

src/GitHub.VisualStudio/UI/Options/OptionsControl.xaml.cs renamed to src/GitHub.VisualStudio/UI/Settings/OptionsControl.xaml.cs

File renamed without changes.

0 commit comments

Comments
 (0)