Dashboard and orchestrations shouldn't be packed on build
- Dominant language
- C#
- Stars
- 6.3k
- Forks
- 991
- Avg merge
- 2d 15h
- Merged PRs (30d)
- 196
Description
The Aspire.Dashboard.Sdk and Aspire.Hosting.Orchestration are automatically packed whenever a build is run, which has a noticeable effect on the duration of a build.

E.g., run the following command, then check msbuild.binlog
```
./build.cmd -restore -build -c Release -ci /p:CI=false /bl
```
It's not obvious in the "new" MSBuild console logger as it constantly rewrites lines (/cc: @rainersigwald), but in GHA it's (relatively) easy to spot ([example](https://github.com/RussKie/aspire/actions/runs/14327794204/job/40156631054)):

This target should be conditioned as well:
https://github.com/dotnet/aspire/blob/f9035bc913df62c51ead803f0578518f53b0364a/eng/dashboardpack/Common.projitems#L36
Contributor guide
Assessment
This issue has not been assessed yet.