React to DNX renames

This commit is contained in:
Victor Hurdugaci 2015-07-29 00:30:44 -07:00
parent d2ff1dd446
commit 81e8830c67
3 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ using Microsoft.AspNet.DataProtection.Abstractions;
using Microsoft.Framework.Internal;
#if DNX451 || DNXCORE50 // [[ISSUE1400]] Replace with DNX_ANY when it becomes available
using Microsoft.Framework.Runtime;
using Microsoft.Dnx.Runtime;
#endif
namespace Microsoft.AspNet.DataProtection

View File

@ -13,12 +13,12 @@
"net451": { },
"dnx451": {
"dependencies": {
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-*"
"Microsoft.Dnx.Runtime.Abstractions": "1.0.0-*"
}
},
"dnxcore50": {
"dependencies": {
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-*",
"Microsoft.Dnx.Runtime.Abstractions": "1.0.0-*",
"System.ComponentModel": "4.0.0-beta-*",
"System.Diagnostics.Debug": "4.0.10-beta-*",
"System.Reflection": "4.0.10-beta-*",

View File

@ -8,7 +8,7 @@ using System.Text;
using Microsoft.AspNet.DataProtection.Infrastructure;
using Microsoft.AspNet.DataProtection.Abstractions;
using Microsoft.AspNet.Testing;
using Microsoft.Framework.Runtime;
using Microsoft.Dnx.Runtime;
using Moq;
using Xunit;