From a7e4fa9c9d944d95bbe042d6907d47b7049edc5f Mon Sep 17 00:00:00 2001 From: Praburaj Date: Tue, 3 Jun 2014 17:02:07 -0700 Subject: [PATCH] OptionsServices.GetDefaultServices() call no longer required This is in response to a recent change. --- src/MusicStore/Startup.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/MusicStore/Startup.cs b/src/MusicStore/Startup.cs index aa64eda4d2..58f132f127 100644 --- a/src/MusicStore/Startup.cs +++ b/src/MusicStore/Startup.cs @@ -9,7 +9,6 @@ using Microsoft.AspNet.Security.Cookies; using Microsoft.Data.Entity; using Microsoft.Framework.ConfigurationModel; using Microsoft.Framework.DependencyInjection; -using Microsoft.Framework.OptionsModel; using MusicStore.Models; namespace MusicStore @@ -28,7 +27,6 @@ namespace MusicStore app.UseServices(services => { - services.Add(OptionsServices.GetDefaultServices()); // Add EF services to the services container services.AddEntityFramework() .AddSqlServer();