Removed Ctor, Cleaned up namespace and removed extra vertical spacing as per comments.
This commit is contained in:
parent
b94634b4fa
commit
5a5975e348
|
|
@ -1,20 +1,12 @@
|
|||
// 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.
|
||||
|
||||
using Microsoft.AspNet.Builder;
|
||||
using Microsoft.Framework.DependencyInjection;
|
||||
using Microsoft.Framework.DependencyInjection.Fallback;
|
||||
using Microsoft.Framework.OptionsModel;
|
||||
using System;
|
||||
|
||||
namespace Microsoft.AspNet.Hosting.Fakes
|
||||
{
|
||||
public class StartupBase
|
||||
{
|
||||
public StartupBase()
|
||||
{
|
||||
}
|
||||
|
||||
public void ConfigureBaseClassServices(IServiceCollection services)
|
||||
{
|
||||
services.AddOptions();
|
||||
|
|
@ -24,6 +16,5 @@ namespace Microsoft.AspNet.Hosting.Fakes
|
|||
o.Environment = "BaseClass";
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue