OptionsServices.GetDefaultServices() call no longer required

This is in response to a recent change.
This commit is contained in:
Praburaj 2014-06-03 17:02:07 -07:00
parent 032ad4a444
commit a7e4fa9c9d
1 changed files with 0 additions and 2 deletions

View File

@ -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();