diff --git a/src/Razor/Microsoft.NET.Sdk.Razor/src/build/netstandard2.0/Microsoft.NET.Sdk.Razor.DesignTime.targets b/src/Razor/Microsoft.NET.Sdk.Razor/src/build/netstandard2.0/Microsoft.NET.Sdk.Razor.DesignTime.targets
index 6df58f657e..cfb0e4e046 100644
--- a/src/Razor/Microsoft.NET.Sdk.Razor/src/build/netstandard2.0/Microsoft.NET.Sdk.Razor.DesignTime.targets
+++ b/src/Razor/Microsoft.NET.Sdk.Razor/src/build/netstandard2.0/Microsoft.NET.Sdk.Razor.DesignTime.targets
@@ -26,7 +26,7 @@ Copyright (c) .NET Foundation. All rights reserved.
Defines the ability to understand the configuration for the Razor language service provided by
the runtime/toolset packages. Introduced in 2.1
-->
-
+
+
+
+
+ netcoreapp1.1
+
+
+
+
+
+
+
+
+ All
+
+
+
+
diff --git a/src/Razor/test/testassets/SimpleMvc11/Views/Home/Index.cshtml b/src/Razor/test/testassets/SimpleMvc11/Views/Home/Index.cshtml
new file mode 100644
index 0000000000..00afab6a0c
--- /dev/null
+++ b/src/Razor/test/testassets/SimpleMvc11/Views/Home/Index.cshtml
@@ -0,0 +1,108 @@
+@{
+ ViewData["Title"] = "Home Page";
+}
+
+
+
+
+
+
+
+
+
+
+

+
+
+ Learn how to build ASP.NET apps that can run anywhere.
+
+ Learn More
+
+
+
+
+
+

+
+
+ There are powerful new features in Visual Studio for building modern web apps.
+
+ Learn More
+
+
+
+
+
+

+
+
+ Bring in libraries from NuGet, Bower, and npm, and automate tasks using Grunt or Gulp.
+
+ Learn More
+
+
+
+
+
+

+
+
+ Learn how Microsoft's Azure cloud platform allows you to build, deploy, and scale web apps.
+
+ Learn More
+
+
+
+
+
+
+
+ Previous
+
+
+
+ Next
+
+
+
+
+
+
Application uses
+
+ - Sample pages using ASP.NET Core MVC
+ - Bower for managing client-side libraries
+ - Theming using Bootstrap
+
+
+
+
+
+
diff --git a/src/Razor/test/testassets/SimpleMvc11/Views/Shared/_Layout.cshtml b/src/Razor/test/testassets/SimpleMvc11/Views/Shared/_Layout.cshtml
new file mode 100644
index 0000000000..2172e5e566
--- /dev/null
+++ b/src/Razor/test/testassets/SimpleMvc11/Views/Shared/_Layout.cshtml
@@ -0,0 +1,71 @@
+
+
+
+
+
+ @ViewData["Title"] - SimpleMvc11
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @RenderSection("Scripts", required: false)
+
+
diff --git a/src/Razor/test/testassets/SimpleMvc11/Views/_ViewImports.cshtml b/src/Razor/test/testassets/SimpleMvc11/Views/_ViewImports.cshtml
new file mode 100644
index 0000000000..ab07b6cfbc
--- /dev/null
+++ b/src/Razor/test/testassets/SimpleMvc11/Views/_ViewImports.cshtml
@@ -0,0 +1,2 @@
+@using SimpleMvc11
+@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
diff --git a/src/Razor/test/testassets/SimpleMvc11/Views/_ViewStart.cshtml b/src/Razor/test/testassets/SimpleMvc11/Views/_ViewStart.cshtml
new file mode 100644
index 0000000000..a5f10045db
--- /dev/null
+++ b/src/Razor/test/testassets/SimpleMvc11/Views/_ViewStart.cshtml
@@ -0,0 +1,3 @@
+@{
+ Layout = "_Layout";
+}