diff --git a/src/Microsoft.AspNet.Diagnostics.Entity/DatabaseErrorPageOptions.cs b/src/Microsoft.AspNet.Diagnostics.Entity/DatabaseErrorPageOptions.cs index eee344e7f4..cd3f0d6c49 100644 --- a/src/Microsoft.AspNet.Diagnostics.Entity/DatabaseErrorPageOptions.cs +++ b/src/Microsoft.AspNet.Diagnostics.Entity/DatabaseErrorPageOptions.cs @@ -1,6 +1,7 @@ // Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +using Microsoft.AspNet.Diagnostics.Entity; using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Builder @@ -12,8 +13,7 @@ namespace Microsoft.AspNet.Builder { /// /// Gets or sets the path that will listen - /// for requests to execute migrations commands. The middleware is only registered if - /// is set to true. + /// for requests to execute migrations commands. /// public virtual PathString MigrationsEndPointPath { get; set; } = MigrationsEndPointOptions.DefaultPath; } diff --git a/src/Microsoft.AspNet.Diagnostics.Entity/MigrationsEndPointOptions.cs b/src/Microsoft.AspNet.Diagnostics.Entity/MigrationsEndPointOptions.cs index 460e965d43..87c17d7423 100644 --- a/src/Microsoft.AspNet.Diagnostics.Entity/MigrationsEndPointOptions.cs +++ b/src/Microsoft.AspNet.Diagnostics.Entity/MigrationsEndPointOptions.cs @@ -1,6 +1,7 @@ // 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.Diagnostics.Entity; using Microsoft.AspNet.Http; namespace Microsoft.AspNet.Builder