-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 1.17.0 breaks solution builds using no-incremental #2284
Comments
same issue here |
Still broken in |
Thanks for reporting the issue @skystedt . We released a new version of Microsoft.Azure.Functions.Worker.Sdk package which includes a fix for this issue. Could you please upgrade to that version? https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk/1.17.2 |
The new version solves the issue. |
@kshyju This was working in |
Would be nice If they would finally create a test case for this instead of just breaking every possible build. |
Still broken in |
Following pull request should fix it: #2763 |
Is there any known workaround for |
You can pass |
@pregress Thank you! |
Description
Building a solution with flag
--no-incremental
while having a test project referencing a functions project will result in the build failing withMSB3030: Could not copy the file "obj\Debug\net8.0\extensions.json" because it was not found.
Using Microsoft.Azure.Functions.Worker.Sdk 1.16.4 => works
Using Microsoft.Azure.Functions.Worker.Sdk 1.17.0 => does not work
Building without any flags => works
Building with
--no-incremental
=> does not work.Building each individual project => works
Building the solution => does not work
Steps to reproduce
Microsoft.Azure.Functions.Worker.Sdk
1.17.0
dotnet build --no-incremental solution.sln
The text was updated successfully, but these errors were encountered: