From 8be3124a723751f7ca4d8e7c24a824a90f231ccb Mon Sep 17 00:00:00 2001 From: Dmytro Pryvedeniuk Date: Mon, 27 Apr 2026 15:18:43 +0300 Subject: [PATCH] Add launchSettings.json files to the sample projects --- .../PolecatIncidentService.csproj | 1 + .../Polecat/PolecatIncidentService/Program.cs | 1 + .../Properties/launchSettings.json | 12 ++++++++++++ .../Server/Properties/launchSettings.json | 12 ++++++++++++ .../Server/Properties/launchSettings.json | 12 ++++++++++++ .../InventoryServer/Properties/launchSettings.json | 12 ++++++++++++ .../OrderServer/Properties/launchSettings.json | 12 ++++++++++++ .../Ponger/Properties/launchSettings.json | 12 ++++++++++++ .../Ponger/Properties/launchSettings.json | 12 ++++++++++++ .../Properties/launchSettings.json | 12 ++++++++++++ .../RacerServer/Properties/launchSettings.json | 12 ++++++++++++ 11 files changed, 110 insertions(+) create mode 100644 src/Persistence/Polecat/PolecatIncidentService/Properties/launchSettings.json create mode 100644 src/Samples/GreeterProtoFirstGrpc/Server/Properties/launchSettings.json create mode 100644 src/Samples/GreeterWithGrpcErrors/Server/Properties/launchSettings.json create mode 100644 src/Samples/OrderChainWithGrpc/InventoryServer/Properties/launchSettings.json create mode 100644 src/Samples/OrderChainWithGrpc/OrderServer/Properties/launchSettings.json create mode 100644 src/Samples/PingPongWithGrpc/Ponger/Properties/launchSettings.json create mode 100644 src/Samples/PingPongWithGrpcStreaming/Ponger/Properties/launchSettings.json create mode 100644 src/Samples/ProcessManagerSample/ProcessManagerSample/Properties/launchSettings.json create mode 100644 src/Samples/RacerWithGrpc/RacerServer/Properties/launchSettings.json diff --git a/src/Persistence/Polecat/PolecatIncidentService/PolecatIncidentService.csproj b/src/Persistence/Polecat/PolecatIncidentService/PolecatIncidentService.csproj index 2db282106..7b4a2b5fe 100644 --- a/src/Persistence/Polecat/PolecatIncidentService/PolecatIncidentService.csproj +++ b/src/Persistence/Polecat/PolecatIncidentService/PolecatIncidentService.csproj @@ -9,6 +9,7 @@ + diff --git a/src/Persistence/Polecat/PolecatIncidentService/Program.cs b/src/Persistence/Polecat/PolecatIncidentService/Program.cs index 9ebe3148d..c2ccb4283 100644 --- a/src/Persistence/Polecat/PolecatIncidentService/Program.cs +++ b/src/Persistence/Polecat/PolecatIncidentService/Program.cs @@ -1,3 +1,4 @@ +using JasperFx; using Polecat; using Polecat.Projections; using PolecatIncidentService; diff --git a/src/Persistence/Polecat/PolecatIncidentService/Properties/launchSettings.json b/src/Persistence/Polecat/PolecatIncidentService/Properties/launchSettings.json new file mode 100644 index 000000000..158e38ea2 --- /dev/null +++ b/src/Persistence/Polecat/PolecatIncidentService/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "PolecatIncidentService": { + "commandName": "Project", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:64069;http://localhost:64070" + } + } +} \ No newline at end of file diff --git a/src/Samples/GreeterProtoFirstGrpc/Server/Properties/launchSettings.json b/src/Samples/GreeterProtoFirstGrpc/Server/Properties/launchSettings.json new file mode 100644 index 000000000..57d8a359d --- /dev/null +++ b/src/Samples/GreeterProtoFirstGrpc/Server/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "Server": { + "commandName": "Project", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:64071;http://localhost:64072" + } + } +} \ No newline at end of file diff --git a/src/Samples/GreeterWithGrpcErrors/Server/Properties/launchSettings.json b/src/Samples/GreeterWithGrpcErrors/Server/Properties/launchSettings.json new file mode 100644 index 000000000..209ccffa6 --- /dev/null +++ b/src/Samples/GreeterWithGrpcErrors/Server/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "Server": { + "commandName": "Project", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:64073;http://localhost:64074" + } + } +} \ No newline at end of file diff --git a/src/Samples/OrderChainWithGrpc/InventoryServer/Properties/launchSettings.json b/src/Samples/OrderChainWithGrpc/InventoryServer/Properties/launchSettings.json new file mode 100644 index 000000000..0c874736a --- /dev/null +++ b/src/Samples/OrderChainWithGrpc/InventoryServer/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "InventoryServer": { + "commandName": "Project", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:64075;http://localhost:64076" + } + } +} \ No newline at end of file diff --git a/src/Samples/OrderChainWithGrpc/OrderServer/Properties/launchSettings.json b/src/Samples/OrderChainWithGrpc/OrderServer/Properties/launchSettings.json new file mode 100644 index 000000000..cc1934ffa --- /dev/null +++ b/src/Samples/OrderChainWithGrpc/OrderServer/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "OrderServer": { + "commandName": "Project", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:64077;http://localhost:64078" + } + } +} \ No newline at end of file diff --git a/src/Samples/PingPongWithGrpc/Ponger/Properties/launchSettings.json b/src/Samples/PingPongWithGrpc/Ponger/Properties/launchSettings.json new file mode 100644 index 000000000..e422b4179 --- /dev/null +++ b/src/Samples/PingPongWithGrpc/Ponger/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "Ponger": { + "commandName": "Project", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:64081;http://localhost:64082" + } + } +} \ No newline at end of file diff --git a/src/Samples/PingPongWithGrpcStreaming/Ponger/Properties/launchSettings.json b/src/Samples/PingPongWithGrpcStreaming/Ponger/Properties/launchSettings.json new file mode 100644 index 000000000..bab2e8128 --- /dev/null +++ b/src/Samples/PingPongWithGrpcStreaming/Ponger/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "Ponger": { + "commandName": "Project", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:64083;http://localhost:64084" + } + } +} \ No newline at end of file diff --git a/src/Samples/ProcessManagerSample/ProcessManagerSample/Properties/launchSettings.json b/src/Samples/ProcessManagerSample/ProcessManagerSample/Properties/launchSettings.json new file mode 100644 index 000000000..22b763b92 --- /dev/null +++ b/src/Samples/ProcessManagerSample/ProcessManagerSample/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "ProcessManagerSample": { + "commandName": "Project", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:64079;http://localhost:64080" + } + } +} \ No newline at end of file diff --git a/src/Samples/RacerWithGrpc/RacerServer/Properties/launchSettings.json b/src/Samples/RacerWithGrpc/RacerServer/Properties/launchSettings.json new file mode 100644 index 000000000..79b95f911 --- /dev/null +++ b/src/Samples/RacerWithGrpc/RacerServer/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "RacerServer": { + "commandName": "Project", + "launchBrowser": false, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:64085;http://localhost:64086" + } + } +} \ No newline at end of file