Move IServerInformation to Server.Interfaces.

This commit is contained in:
Chris Ross 2015-04-10 10:03:04 -07:00
parent f337f8cd04
commit 7fb8053700
3 changed files with 10 additions and 2 deletions

View File

@ -3,7 +3,6 @@
using System;
using System.Threading.Tasks;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.FeatureModel;
using Microsoft.Framework.ConfigurationModel;

View File

@ -0,0 +1,10 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNet.Hosting.Server
{
public interface IServerInformation
{
string Name { get; }
}
}

View File

@ -2,7 +2,6 @@
"version": "1.0.0-*",
"dependencies": {
"Microsoft.AspNet.FeatureModel": "1.0.0-*",
"Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.Framework.ConfigurationModel.Interfaces": "1.0.0-*"
},