9 references to AddPythonExecutable
Aspire.Hosting.Python (3)
PythonAppResourceBuilderExtensions.cs (3)
35/// <item><description><see cref="AddPythonExecutable"/> - To run an executable from the virtual environment</description></item> 169/// <item><description><see cref="AddPythonExecutable"/> - To run an executable from the virtual environment</description></item> 209/// <item><description><see cref="AddPythonExecutable"/> - To run an executable from the virtual environment</description></item>
Aspire.Hosting.Python.Tests (5)
AddPythonAppTests.cs (5)
650var pythonBuilder = builder.AddPythonExecutable("pytest", tempDir.Path, "pytest"); 741builder.AddPythonExecutable("pythonProject", tempDir.Path, executableName); 818var pythonBuilder = builder.AddPythonExecutable("pytest", tempDir.Path, "pytest") 976builder.AddPythonExecutable("executable-app", projectDirectory, "pytest") 1080var pythonApp = builder.AddPythonExecutable("myapp", appDirectory, executableName)
Python.AppHost (1)
Program.cs (1)
17builder.AddPythonExecutable("fastapi-uvicorn-app", "../module_only", "uvicorn")