-
Notifications
You must be signed in to change notification settings - Fork 10.2k
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
Resolve issues with logging generator in recent runtime upgrade #34272
Comments
I'm getting this error when trying to run the Blazor Wasm template locally:
|
@maryamariyan is this related to the API change you mentioned? I'm working on fixing the refpack issue ATM. |
It's related to the merged PR dotnet/runtime#54581 which is making an API breaking change. It updates the signature of some new 6.0 overloads of
in stacktrace of #34272 (comment) above. |
I believe I understand what's going on with the ref pack. It looks like NuGet will append RecuriveDir, even when PackagePath is specified. However ASPNetCore's framework task logic only considers
I'll fix it by omitting the additional use of RecursiveDir (since nuget applies this) and fixing the CreateFrameworkListFile task to be consistent with NuGet. |
@DamianEdwards, @maryamariyan and I had a look at your exception stack and believe you are running with a new version of The initial breaking change was: dotnet/runtime#54581 So we think you should be fixed just by picking up a new ASP.NETCore build with @captainsafia's changes. |
Thanks @ericstj, I was running from the aspnetcore repo itself so I believe what I hit represents the current state from ASP.NET Core's POV and that'll get fixed once @captainsafia's changes land. |
@captainsafia's changes merged this morning so you might be good to go if you're testing the latest from tip. |
If you can reproduce with the actual product then file an issue with repro steps. As it is, this looks to me like a torn-state issue where you're running on newer bits that what you compiled against. Perhaps you can unblock yourself by forcing a clean build. |
Fixed in #34291 |
@ericbeaudry Can you open an new issue with the relevant details? |
The recent runtime upgrade #34033 introduced a few issues. Most of them were resolved/worked around with the exception of an issue that seems to affect our template tests primarily.
It appears that the template tests are looking for a logging generator that does not exist or is misplaced in the wrong directory (#34033 (comment)).
The issue seems to only repro on the Helix machines (#34033 (comment)).
The text was updated successfully, but these errors were encountered: