Skip to content

Commit

Permalink
Fix Zirku.Client2 to use the correct port
Browse files Browse the repository at this point in the history
  • Loading branch information
DovydasNavickas authored Aug 16, 2024
1 parent f12f0e8 commit d77231b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion samples/Zirku/Zirku.Client2/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
var builder = WebApplication.CreateBuilder(args);

var app = builder.Build();

app.UseDefaultFiles();
app.UseStaticFiles();
app.Run();

app.Run();
4 changes: 2 additions & 2 deletions samples/Zirku/Zirku.Client2/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:12345/"
"applicationUrl": "http://localhost:5112/"
}
},

"profiles": {
"Kestrel": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "http://localhost:12345/",
"applicationUrl": "http://localhost:5112/",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand Down

0 comments on commit d77231b

Please sign in to comment.