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

Commit 543bf7b

Browse files
committed
Move to GitHub.VisualStudio namespace
1 parent 18bd027 commit 543bf7b

File tree

8 files changed

+9
-32
lines changed

8 files changed

+9
-32
lines changed

src/GitHub.VisualStudio.16/Base/TeamExplorerBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.TeamFoundation.Client;
99
using Microsoft.TeamFoundation.Controls;
1010

11-
namespace Microsoft.TeamExplorerSample
11+
namespace GitHub.VisualStudio
1212
{
1313
/// <summary>
1414
/// Team Explorer plugin common base class.

src/GitHub.VisualStudio.16/Base/TeamExplorerBaseNavigationItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.TeamFoundation.Controls;
88
using Microsoft.VisualStudio.Shell;
99

10-
namespace Microsoft.TeamExplorerSample
10+
namespace GitHub.VisualStudio
1111
{
1212
/// <summary>
1313
/// Team Explorer base navigation item class.

src/GitHub.VisualStudio.16/Base/TeamExplorerBaseNavigationLink.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.TeamFoundation.Controls;
88
using Microsoft.VisualStudio.Shell;
99

10-
namespace Microsoft.TeamExplorerSample
10+
namespace GitHub.VisualStudio
1111
{
1212
/// <summary>
1313
/// Team Explorer base navigation link class.

src/GitHub.VisualStudio.16/Base/TeamExplorerBasePage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.ComponentModel;
77
using Microsoft.TeamFoundation.Controls;
88

9-
namespace Microsoft.TeamExplorerSample
9+
namespace GitHub.VisualStudio
1010
{
1111
/// <summary>
1212
/// Team Explorer page base class.

src/GitHub.VisualStudio.16/Base/TeamExplorerBaseSection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.ComponentModel;
77
using Microsoft.TeamFoundation.Controls;
88

9-
namespace Microsoft.TeamExplorerSample
9+
namespace GitHub.VisualStudio
1010
{
1111
/// <summary>
1212
/// Team Explorer base section class.

src/GitHub.VisualStudio.16/Sync/PublishSection.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@
1010
using GitHub.Primitives;
1111
using GitHub.Services;
1212
using GitHub.ViewModels.TeamExplorer;
13-
using GitHub.VisualStudio;
1413
using Microsoft.TeamFoundation.Controls;
1514
using Microsoft.VisualStudio.Shell;
1615
using Microsoft.VisualStudio.Threading;
1716
using ReactiveUI;
1817
using Task = System.Threading.Tasks.Task;
1918

2019

21-
namespace Microsoft.TeamExplorerSample.Sync
20+
namespace GitHub.VisualStudio.Sync
2221
{
2322
/// <summary>
2423
/// Publish section.

src/GitHub.VisualStudio.16/Sync/PublishView.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<UserControl x:Class="Microsoft.TeamExplorerSample.Sync.PublishView"
1+
<UserControl x:Class="GitHub.VisualStudio.Sync.PublishView"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

src/GitHub.VisualStudio.16/Sync/PublishView.xaml.cs

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,15 @@
1-
/*
2-
* Copyright (c) Microsoft Corporation. All rights reserved. This code released
3-
* under the terms of the Microsoft Limited Public License (MS-LPL).
4-
*/
5-
using System;
6-
using System.Collections.Generic;
7-
using System.Linq;
8-
using System.Text;
9-
using System.Threading.Tasks;
10-
using System.Windows;
1+
using System.Windows;
112
using System.Windows.Controls;
12-
using System.Windows.Data;
13-
using System.Windows.Documents;
14-
using System.Windows.Input;
15-
using System.Windows.Media;
16-
using System.Windows.Media.Imaging;
17-
using System.Windows.Navigation;
18-
using System.Windows.Shapes;
193

20-
namespace Microsoft.TeamExplorerSample.Sync
4+
namespace GitHub.VisualStudio.Sync
215
{
22-
/// <summary>
23-
/// Interaction logic for SelectedFileInfoView.xaml
24-
/// </summary>
256
public partial class PublishView : UserControl
267
{
278
public PublishView()
289
{
2910
InitializeComponent();
3011
}
3112

32-
/// <summary>
33-
/// Parent section.
34-
/// </summary>
3513
public PublishSection ParentSection
3614
{
3715
get { return (PublishSection)GetValue(ParentSectionProperty); }

0 commit comments

Comments
 (0)