diff --git a/src/MusicStore.Spa/Helpers/AngularExtensions.cs b/src/MusicStore.Spa/Helpers/AngularExtensions.cs index cdf3b828df..7930babb59 100644 --- a/src/MusicStore.Spa/Helpers/AngularExtensions.cs +++ b/src/MusicStore.Spa/Helpers/AngularExtensions.cs @@ -3,9 +3,9 @@ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Linq.Expressions; -using Microsoft.AspNet.Mvc.Rendering.Expressions; using Microsoft.AspNet.Routing; using Microsoft.AspNet.Html.Abstractions; +using Microsoft.AspNet.Mvc.ViewFeatures; namespace Microsoft.AspNet.Mvc.Rendering { diff --git a/src/MusicStore.Spa/Helpers/JsonExtensions.cs b/src/MusicStore.Spa/Helpers/JsonExtensions.cs index 1d7f93cdd5..af50d5aa38 100644 --- a/src/MusicStore.Spa/Helpers/JsonExtensions.cs +++ b/src/MusicStore.Spa/Helpers/JsonExtensions.cs @@ -2,6 +2,7 @@ using Microsoft.AspNet.Routing; using Newtonsoft.Json; using Microsoft.AspNet.Html.Abstractions; +using Microsoft.AspNet.Mvc.ViewFeatures; namespace Microsoft.AspNet.Mvc.Rendering { diff --git a/src/MusicStore.Spa/Infrastructure/ApiResult.cs b/src/MusicStore.Spa/Infrastructure/ApiResult.cs index 124b58e72c..b747932533 100644 --- a/src/MusicStore.Spa/Infrastructure/ApiResult.cs +++ b/src/MusicStore.Spa/Infrastructure/ApiResult.cs @@ -2,7 +2,6 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using Microsoft.AspNet.Mvc.ActionResults; using Microsoft.AspNet.Mvc.ModelBinding; using Newtonsoft.Json; diff --git a/src/MusicStore.Spa/Infrastructure/SortExpression.cs b/src/MusicStore.Spa/Infrastructure/SortExpression.cs index f775e1e057..b146d49532 100644 --- a/src/MusicStore.Spa/Infrastructure/SortExpression.cs +++ b/src/MusicStore.Spa/Infrastructure/SortExpression.cs @@ -1,7 +1,7 @@ using System; using System.Linq; using System.Linq.Expressions; -using Microsoft.AspNet.Mvc.Rendering.Expressions; +using Microsoft.AspNet.Mvc.ViewFeatures; namespace MusicStore.Infrastructure { diff --git a/src/MusicStore/Controllers/AccountController.cs b/src/MusicStore/Controllers/AccountController.cs index df48b74d3f..d58b8837cf 100644 --- a/src/MusicStore/Controllers/AccountController.cs +++ b/src/MusicStore/Controllers/AccountController.cs @@ -5,7 +5,6 @@ using Microsoft.AspNet.Authorization; using Microsoft.AspNet.Hosting; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Mvc; -using Microsoft.AspNet.Mvc.ActionResults; using Microsoft.AspNet.Mvc.Rendering; using Microsoft.Framework.DependencyInjection; using MusicStore.Models; diff --git a/src/MusicStore/Controllers/ManageController.cs b/src/MusicStore/Controllers/ManageController.cs index 7e3577f154..7c7aa5555b 100644 --- a/src/MusicStore/Controllers/ManageController.cs +++ b/src/MusicStore/Controllers/ManageController.cs @@ -4,7 +4,6 @@ using System.Threading.Tasks; using Microsoft.AspNet.Authorization; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Mvc; -using Microsoft.AspNet.Mvc.ActionResults; using MusicStore.Models; namespace MusicStore.Controllers diff --git a/test/MusicStore.Test/CartSummaryComponentTest.cs b/test/MusicStore.Test/CartSummaryComponentTest.cs index b50cb0ee20..2c821f475c 100644 --- a/test/MusicStore.Test/CartSummaryComponentTest.cs +++ b/test/MusicStore.Test/CartSummaryComponentTest.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Threading.Tasks; using Microsoft.AspNet.Http; using Microsoft.AspNet.Http.Internal; -using Microsoft.AspNet.Mvc; +using Microsoft.AspNet.Mvc.Rendering; using Microsoft.AspNet.Mvc.ViewComponents; using Microsoft.Data.Entity; using Microsoft.Framework.DependencyInjection; diff --git a/test/MusicStore.Test/CheckoutControllerTest.cs b/test/MusicStore.Test/CheckoutControllerTest.cs index 0c5ce8ac88..4dd20a15eb 100644 --- a/test/MusicStore.Test/CheckoutControllerTest.cs +++ b/test/MusicStore.Test/CheckoutControllerTest.cs @@ -7,7 +7,6 @@ using System.Threading.Tasks; using Microsoft.AspNet.Http; using Microsoft.AspNet.Http.Internal; using Microsoft.AspNet.Mvc; -using Microsoft.AspNet.Mvc.ActionResults; using Microsoft.Data.Entity; using Microsoft.Framework.DependencyInjection; using Microsoft.Framework.Primitives; diff --git a/test/MusicStore.Test/HomeControllerTest.cs b/test/MusicStore.Test/HomeControllerTest.cs index 25f0e86900..5bc75c35e3 100644 --- a/test/MusicStore.Test/HomeControllerTest.cs +++ b/test/MusicStore.Test/HomeControllerTest.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNet.Mvc; -using Microsoft.AspNet.Mvc.ActionResults; using Microsoft.Data.Entity; using Microsoft.Framework.Caching.Memory; using Microsoft.Framework.DependencyInjection; diff --git a/test/MusicStore.Test/ManageControllerTest.cs b/test/MusicStore.Test/ManageControllerTest.cs index 4bf304d329..ecaf16ce6e 100644 --- a/test/MusicStore.Test/ManageControllerTest.cs +++ b/test/MusicStore.Test/ManageControllerTest.cs @@ -10,7 +10,6 @@ using Microsoft.AspNet.Http.Internal; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Identity.EntityFramework; using Microsoft.AspNet.Mvc; -using Microsoft.AspNet.Mvc.ActionResults; using Microsoft.Data.Entity; using Microsoft.Framework.DependencyInjection; using MusicStore.Models; diff --git a/test/MusicStore.Test/ShoppingCartControllerTest.cs b/test/MusicStore.Test/ShoppingCartControllerTest.cs index 2854ef90a4..c4b6a1babb 100644 --- a/test/MusicStore.Test/ShoppingCartControllerTest.cs +++ b/test/MusicStore.Test/ShoppingCartControllerTest.cs @@ -9,7 +9,6 @@ using Microsoft.AspNet.Http.Features; using Microsoft.AspNet.Http.Features.Internal; using Microsoft.AspNet.Http.Internal; using Microsoft.AspNet.Mvc; -using Microsoft.AspNet.Mvc.ActionResults; using Microsoft.Data.Entity; using Microsoft.Framework.DependencyInjection; using Microsoft.Framework.Primitives; diff --git a/test/MusicStore.Test/StoreControllerTest.cs b/test/MusicStore.Test/StoreControllerTest.cs index 090ec6b691..1f38926c42 100644 --- a/test/MusicStore.Test/StoreControllerTest.cs +++ b/test/MusicStore.Test/StoreControllerTest.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNet.Mvc; -using Microsoft.AspNet.Mvc.ActionResults; using Microsoft.Data.Entity; using Microsoft.Framework.Caching.Memory; using Microsoft.Framework.DependencyInjection;