diff --git a/samples/MvcSample.Web/Views/Shared/fr/_Layout.cshtml b/samples/MvcSample.Web/Views/Shared/fr/_Layout.cshtml
new file mode 100644
index 0000000000..3eb5e221e2
--- /dev/null
+++ b/samples/MvcSample.Web/Views/Shared/fr/_Layout.cshtml
@@ -0,0 +1,47 @@
+
+
+
+
+ @await RenderSectionAsync("footer", required: false)
+
+
diff --git a/samples/MvcSample.Web/Views/_ViewStart.cshtml b/samples/MvcSample.Web/Views/_ViewStart.cshtml
index ab23e9a239..1af6e49466 100644
--- a/samples/MvcSample.Web/Views/_ViewStart.cshtml
+++ b/samples/MvcSample.Web/Views/_ViewStart.cshtml
@@ -1,3 +1,3 @@
@{
- Layout = "/Views/Shared/_Layout.cshtml";
+ Layout = "_Layout";
}
\ No newline at end of file
diff --git a/src/Microsoft.AspNet.Mvc.Razor/IRazorViewEngine.cs b/src/Microsoft.AspNet.Mvc.Razor/IRazorViewEngine.cs
new file mode 100644
index 0000000000..efb1079c6a
--- /dev/null
+++ b/src/Microsoft.AspNet.Mvc.Razor/IRazorViewEngine.cs
@@ -0,0 +1,22 @@
+// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using Microsoft.AspNet.Mvc.Rendering;
+
+namespace Microsoft.AspNet.Mvc.Razor
+{
+ ///