15 writes to CommandLineArgs
Aspire.Hosting.Azure.Tests (9)
AzureContainerAppsTests.cs (1)
2445CommandLineArgs = "--port 7071",
AzureDeployerTests.cs (1)
1632CommandLineArgs = "--port 7071",
AzureFunctionsTests.cs (6)
470CommandLineArgs = "--port 7071", 487CommandLineArgs = "--port 70b1", 504CommandLineArgs = "--port", 537CommandLineArgs = "--port 7072 --port 7071", 554CommandLineArgs = "--port 7071 --useHttps", 571CommandLineArgs = "--useHttps",
PublicApiTests\FunctionsPublicApiTests.cs (1)
106CommandLineArgs = "--port 7071",
Aspire.Hosting.Tests (6)
Dcp\DcpExecutorTests.cs (2)
10503CommandLineArgs = "--profile-arg \"profile value\"" 10549CommandLineArgs = "exec --depsfile ./TestLib.deps.json --runtimeconfig ./TestLib.runtimeconfig.json $(HOME)/.dotnet/tools/TestTool.dll TestLib::TestLib.Functions::Handler"
ProjectResourceTests.cs (4)
1087CommandLineArgs = "arg1 arg2", 1108CommandLineArgs = "arg1 arg2", 1129CommandLineArgs = "arg1 arg2", 1200CommandLineArgs = "exec app.dll"
5 references to CommandLineArgs
Aspire.Hosting (2)
ApplicationModel\ExecutableLaunchRecipe.cs (2)
915launchProfile is not null && !string.IsNullOrWhiteSpace(launchProfile.CommandLineArgs) 916? CommandLineArgsParser.Parse(launchProfile.CommandLineArgs)
Aspire.Hosting.Azure.Functions (1)
AzureFunctionsProjectResourceExtensions.cs (1)
271var commandLineArgs = CommandLineArgsParser.Parse(launchProfile.LaunchProfile.CommandLineArgs ?? string.Empty);
Aspire.Hosting.Dotnet (2)
DotnetProjectHostingExtensions.cs (2)
386return launchProfile is not null && !string.IsNullOrWhiteSpace(launchProfile.CommandLineArgs) 387? CommandLineArgsParser.Parse(launchProfile.CommandLineArgs)