You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment when executing aspire run, aspire add or aspire publish in a source tree results in a search for all *.csproj files which are an apphost. For each project it runs dotnet msbuild to fetch information to determine whether the project is an app host and then stores this information to reduce future lookup time.
We should consider a few options for optimizing this experience. A few options:
Run all dotnet msbuild calls in parallel (or in parallel batches)
Prompt for the user to select their csproj if over a certain number of csproj files are found.
The text was updated successfully, but these errors were encountered:
At the moment when executing
aspire run
,aspire add
oraspire publish
in a source tree results in a search for all *.csproj files which are an apphost. For each project it runsdotnet msbuild
to fetch information to determine whether the project is an app host and then stores this information to reduce future lookup time.We should consider a few options for optimizing this experience. A few options:
dotnet msbuild
calls in parallel (or in parallel batches)The text was updated successfully, but these errors were encountered: