From 1aaf37dab8ee4534ae2000082a08ba112173cc4c Mon Sep 17 00:00:00 2001 From: Reuben Bond <203839+ReubenBond@users.noreply.github.com> Date: Fri, 7 Nov 2025 15:45:15 -0800 Subject: [PATCH] .NET: Remove launchSettings.json from .gitignore in dotnet/samples (#2006) * Remove launchSettings.json from .gitignore in dotnet/samples * Update dotnet/samples/GettingStarted/DevUI/DevUI_Step01_BasicUsage/Properties/launchSettings.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update dotnet/samples/AGUIClientServer/AGUIServer/Properties/launchSettings.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- dotnet/samples/.gitignore | 1 - .../AGUIServer/Properties/launchSettings.json | 12 ++++++++++++ .../Properties/launchSettings.json | 13 +++++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) delete mode 100644 dotnet/samples/.gitignore create mode 100644 dotnet/samples/AGUIClientServer/AGUIServer/Properties/launchSettings.json create mode 100644 dotnet/samples/GettingStarted/DevUI/DevUI_Step01_BasicUsage/Properties/launchSettings.json diff --git a/dotnet/samples/.gitignore b/dotnet/samples/.gitignore deleted file mode 100644 index 8392c905c6..0000000000 --- a/dotnet/samples/.gitignore +++ /dev/null @@ -1 +0,0 @@ -launchSettings.json \ No newline at end of file diff --git a/dotnet/samples/AGUIClientServer/AGUIServer/Properties/launchSettings.json b/dotnet/samples/AGUIClientServer/AGUIServer/Properties/launchSettings.json new file mode 100644 index 0000000000..6e38bd9975 --- /dev/null +++ b/dotnet/samples/AGUIClientServer/AGUIServer/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "AGUIServer": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "http://localhost:5100;https://localhost:5101" + } + } +} \ No newline at end of file diff --git a/dotnet/samples/GettingStarted/DevUI/DevUI_Step01_BasicUsage/Properties/launchSettings.json b/dotnet/samples/GettingStarted/DevUI/DevUI_Step01_BasicUsage/Properties/launchSettings.json new file mode 100644 index 0000000000..fd55d5d1f0 --- /dev/null +++ b/dotnet/samples/GettingStarted/DevUI/DevUI_Step01_BasicUsage/Properties/launchSettings.json @@ -0,0 +1,13 @@ +{ + "profiles": { + "DevUI_Step01_BasicUsage": { + "commandName": "Project", + "launchUrl": "devui", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:50516;http://localhost:50518" + } + } +} \ No newline at end of file