From 3fa5dee2d7f377d57e75fbb0d328cd26b6ff093a Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Fri, 29 May 2015 14:52:23 -0700 Subject: [PATCH] React to aspnet/Razor#140 --- src/PageGenerator/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PageGenerator/Program.cs b/src/PageGenerator/Program.cs index 8af5e049b2..cd3ecefb13 100644 --- a/src/PageGenerator/Program.cs +++ b/src/PageGenerator/Program.cs @@ -6,7 +6,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; using Microsoft.AspNet.Razor; -using Microsoft.AspNet.Razor.Generator; +using Microsoft.AspNet.Razor.CodeGenerators; using Microsoft.Framework.Runtime; namespace PageGenerator @@ -32,7 +32,7 @@ namespace PageGenerator if (diagnosticsLibInfo == null) { throw new ArgumentException(string.Format( - "Unable to open library {0}. Is it spelled correctly and listed as a dependency in project.json?", + "Unable to open library {0}. Is it spelled correctly and listed as a dependency in project.json?", args[0])); } var viewBasePath = Path.Combine(Path.GetDirectoryName(diagnosticsLibInfo.Path), "Views");