10 references to AddPythonExecutable
Aspire.Hosting.Python (2)
PythonAppResourceBuilderExtensions.cs (2)
159/// <item><description><see cref="AddPythonExecutable"/> - To run an executable from the virtual environment</description></item> 200/// <item><description><see cref="AddPythonExecutable"/> - To run an executable from the virtual environment</description></item>
Aspire.Hosting.Python.Tests (7)
AddPythonAppTests.cs (7)
948var pythonBuilder = builder.AddPythonExecutable("pytest", tempDir.Path, "pytest"); 1039builder.AddPythonExecutable("pythonProject", tempDir.Path, executableName); 1116var pythonBuilder = builder.AddPythonExecutable("pytest", tempDir.Path, "pytest") 1274builder.AddPythonExecutable("executable-app", projectDirectory, "pytest") 1339builder.AddPythonExecutable("executable-app", projectDirectory, "pytest") 1540var pythonApp = builder.AddPythonExecutable("myapp", appDirectory, executableName) 1810builder.AddPythonExecutable("executable-app", projectDirectory, "pytest");
Python.AppHost (1)
Program.cs (1)
15builder.AddPythonExecutable("fastapi-uvicorn-app", "../module_only", "uvicorn")