Fixing namespaces and using statements

This commit is contained in:
Andreia Gaita 2015-01-28 17:26:51 +01:00
Родитель 4f9a279889
Коммит 4e5d84ce84
8 изменённых файлов: 10 добавлений и 54 удалений

Просмотреть файл

@ -1,13 +1,8 @@
using GitHub.VisualStudio.Services;
using Microsoft.VisualStudio.ComponentModelHost;
using Microsoft.VisualStudio.ComponentModelHost;
using Microsoft.VisualStudio.Shell;
using System;
using System.Collections.Generic;
using System.ComponentModel.Design;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GitHub.VisualStudio
{

Просмотреть файл

@ -1,16 +1,11 @@
using GitHub.VisualStudio.Helpers;
using Microsoft.TeamFoundation.Client;
using Microsoft.TeamFoundation.Client;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GitHub.VisualStudio.Base
{
public abstract class TeamExplorerBase : IDisposable, INotifyPropertyChanged
abstract class TeamExplorerBase : IDisposable, INotifyPropertyChanged
{
bool subscribed = false;

Просмотреть файл

@ -1,13 +1,9 @@
using GitHub.VisualStudio.Helpers;
using GitHub.VisualStudio.Base;
using Microsoft.TeamFoundation.Controls;
using NullGuard;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GitHub.VisualStudio.Base
namespace GitHub.VisualStudio
{
class TeamExplorerSectionBase : TeamExplorerBase, ITeamExplorerSection, INotifyPropertySource
{

Просмотреть файл

@ -1,27 +1,10 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;
using System.ComponentModel.Design;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reactive.Concurrency;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;
using GitHub.Authentication;
using GitHub.Infrastructure;
using GitHub.ViewModels;
using GitHub.VisualStudio.UI.Views;
using Microsoft.VisualStudio.ComponentModelHost;
using Microsoft.VisualStudio.Shell;
using ReactiveUI;
using Splat;
using GitHub.Exports;
using GitHub.VisualStudio.Services;
namespace GitHub.VisualStudio
{

Просмотреть файл

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel.Composition;
namespace GitHub.Exports
{

Просмотреть файл

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GitHub.VisualStudio.Helpers
namespace GitHub.VisualStudio
{
public interface INotifyPropertySource
{

Просмотреть файл

@ -1,11 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.CompilerServices;
namespace GitHub.VisualStudio.Helpers
namespace GitHub.VisualStudio
{
public static class PropertyNotifierExtensions
{

Просмотреть файл

@ -2,17 +2,14 @@
using ReactiveUI;
using Splat;
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;
using System.Globalization;
using System.Linq;
using System.Reactive.Concurrency;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace GitHub.VisualStudio.Services
namespace GitHub.VisualStudio
{
[Export]
[PartCreationPolicy(CreationPolicy.Shared)]