9 references to AddPythonModule
Aspire.Hosting.Python (3)
PythonAppResourceBuilderExtensions.cs (3)
34/// <item><description><see cref="AddPythonModule"/> - To run a Python module via <c>python -m</c></description></item> 168/// <item><description><see cref="AddPythonModule"/> - To run a Python module via <c>python -m</c></description></item> 208/// <item><description><see cref="AddPythonModule"/> - To run a Python module via <c>python -m</c></description></item>
Aspire.Hosting.Python.Tests (5)
AddPythonAppTests.cs (5)
631var pythonBuilder = builder.AddPythonModule("flask-app", tempDir.Path, "flask"); 707builder.AddPythonModule("pythonProject", tempDir.Path, moduleName); 772var pythonBuilder = builder.AddPythonModule("flask-app", tempDir.Path, "flask") 973builder.AddPythonModule("module-app", projectDirectory, "mymodule") 1049var pythonApp = builder.AddPythonModule("myapp", appDirectory, moduleName)
Python.AppHost (1)
Program.cs (1)
11builder.AddPythonModule("fastapi-app", "../module_only", "uvicorn")