diff --git a/test/LocalizationWebsite/Program.cs b/test/LocalizationWebsite/Program.cs new file mode 100644 index 0000000000..e5b4924d8c --- /dev/null +++ b/test/LocalizationWebsite/Program.cs @@ -0,0 +1,20 @@ +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using Microsoft.AspNet.Hosting; + +namespace LocalizationWebsite +{ + public static class Program + { + public static void Main(string[] args) + { + var application = new WebApplicationBuilder() + .UseConfiguration(WebApplicationConfiguration.GetDefault(args)) + .UseStartup("LocalizationWebsite") + .Build(); + + application.Run(); + } + } +} \ No newline at end of file diff --git a/test/LocalizationWebsite/hosting.json b/test/LocalizationWebsite/hosting.json new file mode 100644 index 0000000000..95505372fa --- /dev/null +++ b/test/LocalizationWebsite/hosting.json @@ -0,0 +1,3 @@ +{ + "server": "Microsoft.AspNet.Server.Kestrel" +} \ No newline at end of file diff --git a/test/LocalizationWebsite/project.json b/test/LocalizationWebsite/project.json index 33eeea1694..1a1f2a9599 100644 --- a/test/LocalizationWebsite/project.json +++ b/test/LocalizationWebsite/project.json @@ -1,9 +1,9 @@ { - "webroot": "wwwroot", "version": "1.0.0-*", "compilationOptions": { - "warningsAsErrors": true + "warningsAsErrors": true, + "emitEntryPoint": true }, "dependencies": { @@ -14,10 +14,8 @@ }, "commands": { - "web": "Microsoft.AspNet.Server.Kestrel", - "kestrel": "Microsoft.AspNet.Server.Kestrel" + "web": "LocalizationWebsite" }, - "frameworks": { "dnx451": { }, "dnxcore50": { } diff --git a/test/LocalizationWebsite/wwwroot/web.config b/test/LocalizationWebsite/wwwroot/web.config new file mode 100644 index 0000000000..9a0d90abf8 --- /dev/null +++ b/test/LocalizationWebsite/wwwroot/web.config @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file