12 references to AddPythonExecutable
Aspire.Hosting.Python (2)
PythonAppResourceBuilderExtensions.cs (2)
167/// <item><description><see cref="AddPythonExecutable"/> - To run an executable from the virtual environment</description></item> 208/// <item><description><see cref="AddPythonExecutable"/> - To run an executable from the virtual environment</description></item>
Aspire.Hosting.Python.Tests (9)
AddPythonAppTests.cs (9)
961var pythonBuilder = builder.AddPythonExecutable("pytest", workspace.Path, "pytest"); 1052builder.AddPythonExecutable("pythonProject", workspace.Path, executableName); 1129var pythonBuilder = builder.AddPythonExecutable("pytest", workspace.Path, "pytest") 1284builder.AddPythonExecutable("executable-app", projectDirectory, "pytest") 1350builder.AddPythonExecutable("executable-app", projectDirectory, "pytest") 1566var pythonApp = builder.AddPythonExecutable("myapp", appDirectory, "uvicorn") 1592var pythonApp = builder.AddPythonExecutable("myapp", appDirectory, "uvicorn") 1692var pythonApp = builder.AddPythonExecutable("myapp", appDirectory, executableName) 1967builder.AddPythonExecutable("executable-app", projectDirectory, "pytest");
Python.AppHost (1)
AppHost.cs (1)
15builder.AddPythonExecutable("fastapi-uvicorn-app", "../module_only", "uvicorn")