();
+ });
+ }
+}
diff --git a/test/TestApp30/Properties/launchSettings.json b/test/TestApp30/Properties/launchSettings.json
new file mode 100644
index 00000000..b38ebb5b
--- /dev/null
+++ b/test/TestApp30/Properties/launchSettings.json
@@ -0,0 +1,27 @@
+{
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:1792",
+ "sslPort": 0
+ }
+ },
+ "profiles": {
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "TestApp30": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "applicationUrl": "http://localhost:5000",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/test/TestApp30/Startup.cs b/test/TestApp30/Startup.cs
new file mode 100644
index 00000000..732f1557
--- /dev/null
+++ b/test/TestApp30/Startup.cs
@@ -0,0 +1,53 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+
+namespace TestApp30
+{
+ public class Startup
+ {
+ public Startup(IConfiguration configuration)
+ {
+ Configuration = configuration;
+ }
+
+ public IConfiguration Configuration { get; }
+
+ // This method gets called by the runtime. Use this method to add services to the container.
+ public void ConfigureServices(IServiceCollection services)
+ {
+ services.AddControllersWithViews();
+ }
+
+ // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
+ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
+ {
+ if (env.IsDevelopment())
+ {
+ app.UseDeveloperExceptionPage();
+ }
+ else
+ {
+ app.UseExceptionHandler("/Home/Error");
+ }
+ app.UseStaticFiles();
+
+ app.UseRouting();
+
+ app.UseAuthorization();
+
+ app.UseEndpoints(endpoints =>
+ {
+ endpoints.MapControllerRoute(
+ name: "default",
+ pattern: "{controller=Home}/{action=Index}/{id?}");
+ });
+ }
+ }
+}
diff --git a/test/TestApp30/TestApp30.csproj b/test/TestApp30/TestApp30.csproj
new file mode 100644
index 00000000..a4e1cb9c
--- /dev/null
+++ b/test/TestApp30/TestApp30.csproj
@@ -0,0 +1,12 @@
+
+
+
+ netcoreapp3.0
+ ..\..\artifacts\test\$(MSBuildProjectName)
+
+
+
+
+
+
+
diff --git a/test/TestApp30/Views/Home/Index.cshtml b/test/TestApp30/Views/Home/Index.cshtml
new file mode 100644
index 00000000..d2d19bdf
--- /dev/null
+++ b/test/TestApp30/Views/Home/Index.cshtml
@@ -0,0 +1,8 @@
+@{
+ ViewData["Title"] = "Home Page";
+}
+
+
diff --git a/test/TestApp30/Views/Home/Privacy.cshtml b/test/TestApp30/Views/Home/Privacy.cshtml
new file mode 100644
index 00000000..af4fb195
--- /dev/null
+++ b/test/TestApp30/Views/Home/Privacy.cshtml
@@ -0,0 +1,6 @@
+@{
+ ViewData["Title"] = "Privacy Policy";
+}
+@ViewData["Title"]
+
+Use this page to detail your site's privacy policy.
diff --git a/test/TestApp30/Views/Shared/Error.cshtml b/test/TestApp30/Views/Shared/Error.cshtml
new file mode 100644
index 00000000..a1e04783
--- /dev/null
+++ b/test/TestApp30/Views/Shared/Error.cshtml
@@ -0,0 +1,25 @@
+@model ErrorViewModel
+@{
+ ViewData["Title"] = "Error";
+}
+
+Error.
+An error occurred while processing your request.
+
+@if (Model.ShowRequestId)
+{
+
+ Request ID: @Model.RequestId
+
+}
+
+Development Mode
+
+ Swapping to Development environment will display more detailed information about the error that occurred.
+
+
+ The Development environment shouldn't be enabled for deployed applications.
+ It can result in displaying sensitive information from exceptions to end users.
+ For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
+ and restarting the app.
+
diff --git a/test/TestApp30/Views/Shared/_Layout.cshtml b/test/TestApp30/Views/Shared/_Layout.cshtml
new file mode 100644
index 00000000..40e675de
--- /dev/null
+++ b/test/TestApp30/Views/Shared/_Layout.cshtml
@@ -0,0 +1,48 @@
+
+
+
+
+
+ @ViewData["Title"] - TestApp30
+
+
+
+
+