From 8ed808890c3731facdfc2d9406d9f82c32995067 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Thu, 8 May 2014 04:04:37 -0700 Subject: [PATCH] React to renames --- src/MusicStore/Interfaces/AssemblyNeutralAttribute.cs | 4 ++-- src/MusicStore/Interfaces/IApplicationEnvironment.cs | 4 ++-- src/MusicStore/Startup.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/MusicStore/Interfaces/AssemblyNeutralAttribute.cs b/src/MusicStore/Interfaces/AssemblyNeutralAttribute.cs index e36df21e36..5b71533c10 100644 --- a/src/MusicStore/Interfaces/AssemblyNeutralAttribute.cs +++ b/src/MusicStore/Interfaces/AssemblyNeutralAttribute.cs @@ -1,7 +1,7 @@ -using System; +using System; using System.Runtime.Versioning; -namespace Microsoft.Net.Runtime +namespace Microsoft.Framework.Runtime { [AssemblyNeutral] [AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)] diff --git a/src/MusicStore/Interfaces/IApplicationEnvironment.cs b/src/MusicStore/Interfaces/IApplicationEnvironment.cs index 682ef343be..664391416d 100644 --- a/src/MusicStore/Interfaces/IApplicationEnvironment.cs +++ b/src/MusicStore/Interfaces/IApplicationEnvironment.cs @@ -1,7 +1,7 @@ -using System; +using System; using System.Runtime.Versioning; -namespace Microsoft.Net.Runtime +namespace Microsoft.Framework.Runtime { /// /// Service provided by the host containing application environment details. diff --git a/src/MusicStore/Startup.cs b/src/MusicStore/Startup.cs index 85daacf10f..8e09bb1dea 100644 --- a/src/MusicStore/Startup.cs +++ b/src/MusicStore/Startup.cs @@ -1,4 +1,4 @@ -using Microsoft.AspNet; +using Microsoft.AspNet; using Microsoft.AspNet.Http; using Microsoft.AspNet.Builder; using Microsoft.Framework.ConfigurationModel; @@ -17,7 +17,7 @@ using Microsoft.AspNet.Security.Cookies; using Microsoft.Data.Entity; using Microsoft.Data.Entity.InMemory; using Microsoft.Data.Entity.SqlServer; -using Microsoft.Net.Runtime; +using Microsoft.Framework.Runtime; using MusicStore.Models; using System; using System.Collections.Generic;