-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Akka.Analyzers can't install in .NET Framework projects using pre-SDK project styles #7307
Comments
Akka.NET is still 100% compatible with .NET Framework (we still target .NET Standard 2.0.) All of our unit tests are dual targeted for .NET Framework 4.8 and .NET 8.
We closed akkadotnet/akka.analyzers#66 because we added multi-targeting support for many older versions of Roslyn - so that compatibility issue has less to do with the version of .NET being used versus the version of Visual Studio / MSBuild / ultimately, Roslyn being used. The problem you're running into is that the version of Akka.NET you're installing references Akka.Analyzers v0.2.1, which doesn't include the compatibility fixes we added in akkadotnet/akka.analyzers#66 - those are all available in Akka.Analyzers v0.2.3 and later. So you can fix this by:
|
Thanks for your detailed answer. I created a .NET Framework 4.8 project and tried to install the NuGet package Akka.Analyzers 0.2.5, but I keep getting the error below:
Am I missing something? |
Try cloning and running any of Akka.NET's test suite with If that doesn't work, then it's the version of your tooling that's the issue. Capture a dump from the about screen in Visual Studio to capture version numbers. |
I think this is a more subtle build tooling issue than I originally suspected - apparently it works in our test suite because we're referencing it through a .NET Standard 2.0 project which... semantically, shouldn't be an important distinction. But, here we are. |
lol the worst part is - Akka.Analyzers is, itself, a .NET Standard 2.0 package 🤯 |
Working on a reproduction here: akkadotnet/akka.analyzers#103 Apparently it's a bug with how we're delivering the NuGet package. A local reference to the Akka.Analyzer's |
That reminds me of DLL hell :-) |
No problem - it's one of those cases where we literally run .NET Framework builds of this package hundreds of times a day, but that works only as a result of some transitive dependencies. When explicitly installing the Analyzer package it doesn't work - so there's some.... MSBuild / DLL hell hackery at work that needs to be fixed. It's good that we're getting exposed to these types of problems now, rather than when we start leveraging Roslyn for things like code-gen in future versions. |
Ok, well I found a better explanation for this problem - it's your MSBuild tooling, using the old-style project types that pre-date MSBUILD15 I'll take a look at what xUnit did to fix this issue and see if we can ape that. |
After looking at xUnit's fix, I'm not sure I want to do that - moving everyone over to an ancient version of Roslyn because pre-SDK .NET Framework projects don't support the version-specific folders Roslyn uses seems like a step backwards to me. You can upgrade to using MSBuild 15 without having to migrate framework versions. Please do that and the problem will be resolved. I'll mull whether or not I want to spend the time supporting the pre-.NET SDK MSBuild tooling, but my current lean is "no." |
Thank you for your deep feedback, and sorry for the late response (summer break). In my case, Akka is referenced in an ASP.NET Web Application which is not using the SDK-style project format. I'm closing this issue because I got my explanation, thanks again. |
I believe it should work ok, outside of ASP.NET WebForms. I'm going to leave this issue open so other users can chime in - I'm open to changing my mind on supporting this so long as there's demand for it. |
We are using .NET Framework 4.7 and are unable to update Akka.NET from version 1.5.13 to the latest version 1.5.28.
|
@kimbyungeun have you tried migrating your project to the new MSBuild15 format? |
I will convert the entire project to the PackageReference format and try upgrading Akka.NET to version 1.5.28 again. |
Looks like there isn't going to be an official MSFT tooling solution to this problem any time soon dotnet/sdk#41352 (comment) |
I put this on Petabridge's Q4 OKRs - we're going to have this fixed before the end of the year. |
Version Information
Version of Akka.NET? > 1.5.14
Which Akka.NET Modules? Akka
Describe the bug
On a .NET Framework project (4.8 to be exact), when I try to update Akka to a version higher than 1.5.14, I get the error below:
The problem seems to come from the addition of the dependency on Akka.Analyzers starting with version 1.5.15.
Ticket akkadotnet/akka.analyzers#66 discusses this, but it has been closed.
Does this mean that Akka is simply no longer compatible with .NET Framework starting from version 1.5.15?
To Reproduce
Expected behavior
Being able to update Akka on a .NET Framework project to version > 1.5.14
Actual behavior
Cannot update Akka on a .NET Framework project to version > 1.5.14
Environment
Windows 10, Visual Studio 2022 17.9.6.
The text was updated successfully, but these errors were encountered: