Fix namespaces for code moved to separate class libraries (#263)

* Create ServiceHost a service-specific class

* Renaming hosting namespace

* Rename credentials namespace

* Fix namespaces
This commit is contained in:
Karl Burtram
2017-03-02 14:41:06 -08:00
committed by GitHub
parent 1166778249
commit f00136cffb
219 changed files with 522 additions and 338 deletions

View File

@@ -13,9 +13,9 @@ using System.Linq;
using System.Reflection;
using System.Runtime.Loader;
using Microsoft.Extensions.DependencyModel;
using Microsoft.SqlTools.ServiceLayer.Utility;
using Microsoft.SqlTools.Utility;
namespace Microsoft.SqlTools.ServiceLayer.Extensibility
namespace Microsoft.SqlTools.Extensibility
{
public class ExtensionServiceProvider : RegisteredServiceProvider
{

View File

@@ -4,7 +4,7 @@
//
namespace Microsoft.SqlTools.ServiceLayer.Extensibility
namespace Microsoft.SqlTools.Extensibility
{
/// <summary>
/// A Service that expects to lookup other services. Using this interface on an exported service

View File

@@ -5,7 +5,7 @@
using System.Collections.Generic;
namespace Microsoft.SqlTools.ServiceLayer.Extensibility
namespace Microsoft.SqlTools.Extensibility
{
internal static class IEnumerableExt

View File

@@ -6,9 +6,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.SqlTools.ServiceLayer.Utility;
using Microsoft.SqlTools.Utility;
namespace Microsoft.SqlTools.ServiceLayer.Extensibility
namespace Microsoft.SqlTools.Extensibility
{
public interface IMultiServiceProvider
{

View File

@@ -10,9 +10,9 @@ using System.Globalization;
using System.Linq;
using System.Reflection;
using Microsoft.SqlTools.Hosting;
using Microsoft.SqlTools.ServiceLayer.Utility;
using Microsoft.SqlTools.Utility;
namespace Microsoft.SqlTools.ServiceLayer.Extensibility
namespace Microsoft.SqlTools.Extensibility
{
/// <summary>