diff --git a/samples/Zirku/Zirku.Client2/Program.cs b/samples/Zirku/Zirku.Client2/Program.cs index a6b5a176..2f00e6c9 100644 --- a/samples/Zirku/Zirku.Client2/Program.cs +++ b/samples/Zirku/Zirku.Client2/Program.cs @@ -1,4 +1,8 @@ var builder = WebApplication.CreateBuilder(args); + var app = builder.Build(); + +app.UseDefaultFiles(); app.UseStaticFiles(); -app.Run(); \ No newline at end of file + +app.Run(); diff --git a/samples/Zirku/Zirku.Client2/Properties/launchSettings.json b/samples/Zirku/Zirku.Client2/Properties/launchSettings.json index 59de2828..e674bf1e 100644 --- a/samples/Zirku/Zirku.Client2/Properties/launchSettings.json +++ b/samples/Zirku/Zirku.Client2/Properties/launchSettings.json @@ -3,7 +3,7 @@ "windowsAuthentication": false, "anonymousAuthentication": true, "iisExpress": { - "applicationUrl": "http://localhost:12345/" + "applicationUrl": "http://localhost:5112/" } }, @@ -11,7 +11,7 @@ "Kestrel": { "commandName": "Project", "launchBrowser": true, - "applicationUrl": "http://localhost:12345/", + "applicationUrl": "http://localhost:5112/", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" }