10 references to AddPythonExecutable
Aspire.Hosting.Python (2)
PythonAppResourceBuilderExtensions.cs (2)
158/// <item><description><see cref="AddPythonExecutable"/> - To run an executable from the virtual environment</description></item> 199/// <item><description><see cref="AddPythonExecutable"/> - To run an executable from the virtual environment</description></item>
Aspire.Hosting.Python.Tests (7)
AddPythonAppTests.cs (7)
925var pythonBuilder = builder.AddPythonExecutable("pytest", tempDir.Path, "pytest"); 1016builder.AddPythonExecutable("pythonProject", tempDir.Path, executableName); 1093var pythonBuilder = builder.AddPythonExecutable("pytest", tempDir.Path, "pytest") 1251builder.AddPythonExecutable("executable-app", projectDirectory, "pytest") 1316builder.AddPythonExecutable("executable-app", projectDirectory, "pytest") 1517var pythonApp = builder.AddPythonExecutable("myapp", appDirectory, executableName) 1766builder.AddPythonExecutable("executable-app", projectDirectory, "pytest");
Python.AppHost (1)
Program.cs (1)
15builder.AddPythonExecutable("fastapi-uvicorn-app", "../module_only", "uvicorn")