Removed Ctor, Cleaned up namespace and removed extra vertical spacing as per comments.

This commit is contained in:
dtkujawski 2015-02-13 11:47:42 -06:00
parent b94634b4fa
commit 5a5975e348
1 changed files with 0 additions and 9 deletions

View File

@ -1,20 +1,12 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // 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. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Builder;
using Microsoft.Framework.DependencyInjection; using Microsoft.Framework.DependencyInjection;
using Microsoft.Framework.DependencyInjection.Fallback;
using Microsoft.Framework.OptionsModel;
using System;
namespace Microsoft.AspNet.Hosting.Fakes namespace Microsoft.AspNet.Hosting.Fakes
{ {
public class StartupBase public class StartupBase
{ {
public StartupBase()
{
}
public void ConfigureBaseClassServices(IServiceCollection services) public void ConfigureBaseClassServices(IServiceCollection services)
{ {
services.AddOptions(); services.AddOptions();
@ -24,6 +16,5 @@ namespace Microsoft.AspNet.Hosting.Fakes
o.Environment = "BaseClass"; o.Environment = "BaseClass";
}); });
} }
} }
} }