Update everything to use ASP.NET 5 RC1

This commit is contained in:
SteveSandersonMS
2015-11-24 12:06:24 +00:00
parent efe51c0c95
commit 83c9f2136d
15 changed files with 76 additions and 96 deletions

View File

@@ -1,10 +1,10 @@
using System;
using System.Threading.Tasks;
using Microsoft.AspNet.Razor.Runtime.TagHelpers;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Extensions;
using Microsoft.AspNet.NodeServices;
using Microsoft.Dnx.Runtime;
using Microsoft.AspNet.Razor.TagHelpers;
using Microsoft.Extensions.PlatformAbstractions;
namespace Microsoft.AspNet.AngularServices
{
@@ -48,7 +48,7 @@ namespace Microsoft.AspNet.AngularServices
requestUrl: UriHelper.GetEncodedUrl(this.contextAccessor.HttpContext.Request)
);
output.SuppressOutput();
output.PostElement.AppendEncoded(result);
output.PostElement.AppendHtml(result);
}
}
}