From 3f07b778a1a0f1374a071351e92d0e06572066bc Mon Sep 17 00:00:00 2001 From: Artem Dolya Date: Fri, 15 Aug 2025 09:17:20 -0400 Subject: [PATCH 1/2] Bump version --- .../Properties/launchSettings.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Nlog.RabbitMQ.WebSample/Properties/launchSettings.json b/src/Nlog.RabbitMQ.WebSample/Properties/launchSettings.json index 2b6c0e4..82278b1 100644 --- a/src/Nlog.RabbitMQ.WebSample/Properties/launchSettings.json +++ b/src/Nlog.RabbitMQ.WebSample/Properties/launchSettings.json @@ -9,12 +9,12 @@ "applicationUrl": "http://0.0.0.0:5281" }, "https": { - "commandName": "Project", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "dotnetRunMessages": true, - "applicationUrl": "https://localhost:7051;http://localhost:5281" + "commandName": "Project", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true, + "applicationUrl": "https://0.0.0.0:7051;http://0.0.0.0:5281" }, "Container (Dockerfile)": { "commandName": "Docker", From 4d6f1377b21797758bae933a3b353553dde8c6e6 Mon Sep 17 00:00:00 2001 From: Artem Dolya Date: Fri, 15 Aug 2025 09:30:44 -0400 Subject: [PATCH 2/2] Reverted 0.0.0.0 to localhost --- .../Properties/launchSettings.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Nlog.RabbitMQ.WebSample/Properties/launchSettings.json b/src/Nlog.RabbitMQ.WebSample/Properties/launchSettings.json index 82278b1..afb444d 100644 --- a/src/Nlog.RabbitMQ.WebSample/Properties/launchSettings.json +++ b/src/Nlog.RabbitMQ.WebSample/Properties/launchSettings.json @@ -1,20 +1,20 @@ { "profiles": { "http": { - "commandName": "Project", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "dotnetRunMessages": true, - "applicationUrl": "http://0.0.0.0:5281" - }, - "https": { "commandName": "Project", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" }, "dotnetRunMessages": true, - "applicationUrl": "https://0.0.0.0:7051;http://0.0.0.0:5281" + "applicationUrl": "http://localhost:5281" + }, + "https": { + "commandName": "Project", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true, + "applicationUrl": "https://localhost:7051;http://localhost:5281" }, "Container (Dockerfile)": { "commandName": "Docker",