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