-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Build fails when using sdk version 7.0.200 #30625
Copy link
Copy link
Closed
Labels
Description
Describe the bug
Project fails to build when the sdk version 7.0.200 is used:
error NETSDK1194: The "--output" option isn't supported when building a solution.
Works fine with version 7.0.102 however.
To Reproduce
apt-get update
apt-get install -y --no-install-recommends dotnet-sdk-7.0 //<-- may or may not actually install version 7.0.200 depending on used source repos, Azure Pipeline pulls 200
dotnet restore "service.sln"
dotnet build "service.sln" -c Release -o /app/build --no-restore
We may close this issue if:
- the repro project you share with us is complex. We can't investigate custom projects, so don't point us to such, please.
- if we will not be able to repro the behavior you're reporting
-->
Exceptions (if any)
error NETSDK1194: The "--output" option isn't supported when building a solution.
Workaround
Downgrade to previous package:
apt-get install -y dotnet-sdk-7.0=7.0.103-1
This however breaks testing, and is not a solution.
Further technical details
- ASP.Net service
- Ubuntu Docker base image
- fails in Azure Pipeline
Reactions are currently unavailable