Skip to content
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

Open
lamereactor opened this issue Jul 26, 2024 · 18 comments
Assignees
Labels
rosyln-analyzer Issues that should be addressed via user-exposed Roslyn analyzers.

Comments

@lamereactor
Copy link

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:

Could not install package 'Akka.Analyzers 0.2.1'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.8', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.

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

  1. Create a .NET project
  2. Install Akka 1.5.14
  3. Try to update it to latest version (currently, 1.5.27.1)
  4. See error

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.

@Aaronontheweb
Copy link
Member

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.

<TargetFrameworks>$(NetFrameworkTestVersion);$(NetTestVersion)</TargetFrameworks>

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:

  1. Upgrading to a later version of Akka.NET that references a newer Akka.Analyzers version
  2. Explicitly referencing Akka.Analyzers v0.2.3 or higher.

@Aaronontheweb Aaronontheweb added the rosyln-analyzer Issues that should be addressed via user-exposed Roslyn analyzers. label Jul 26, 2024
@lamereactor
Copy link
Author

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:

Could not install package 'Akka.Analyzers 0.2.5'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.8', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.

Am I missing something?

@Aaronontheweb
Copy link
Member

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:

Could not install package 'Akka.Analyzers 0.2.5'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.8', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.

Am I missing something?

Try cloning and running any of Akka.NET's test suite with --framework net48

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.

@Aaronontheweb
Copy link
Member

So I just tried opening a new .NET 4.7.1 solution in Rider and got the same problem

image

@Aaronontheweb
Copy link
Member

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.

@Aaronontheweb Aaronontheweb added this to the 1.5.28 milestone Jul 26, 2024
@Aaronontheweb
Copy link
Member

lol the worst part is - Akka.Analyzers is, itself, a .NET Standard 2.0 package 🤯

@Aaronontheweb
Copy link
Member

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 .csproj works fine.

@lamereactor
Copy link
Author

That reminds me of DLL hell :-)
Thanks for watching anyway !

@Aaronontheweb
Copy link
Member

That reminds me of DLL hell :-) Thanks for watching anyway !

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.

@Aaronontheweb
Copy link
Member

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

xunit/xunit#2943 (comment)

dotnet/sdk#41352

I'll take a look at what xUnit did to fix this issue and see if we can ape that.

@Aaronontheweb Aaronontheweb changed the title Akka incompatible with .NET Framework after version 1.5.14? Akka.Analyzers can't install in .NET Framework projects using pre-SDK project styles Jul 26, 2024
@Aaronontheweb
Copy link
Member

Aaronontheweb commented Jul 26, 2024

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."

@Aaronontheweb Aaronontheweb removed this from the 1.5.28 milestone Jul 26, 2024
@lamereactor
Copy link
Author

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 don't know if I'll invest in a migration to the SDK-style project format, as I'm not fully aware of the impacts, and I'm not even sure it's properly supported.
It's probably a sign that it's time to switch to .NET 8 or higher!

I'm closing this issue because I got my explanation, thanks again.

@lamereactor lamereactor closed this as not planned Won't fix, can't repro, duplicate, stale Aug 20, 2024
@Aaronontheweb
Copy link
Member

@lamereactor

I don't know if I'll invest in a migration to the SDK-style project format, as I'm not fully aware of the impacts, and I'm not even sure it's properly supported.

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.

@kimbyungeun
Copy link

kimbyungeun commented Sep 18, 2024

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.

"Cannot install the 'Akka.Analyzers 0.2.5' package. You are trying to install this package for a project targeting '.NETFramework,Version=v4.7', but this package does not contain assembly references or content files compatible with this framework. Please contact the package author for more information."

@Aaronontheweb
Copy link
Member

@kimbyungeun have you tried migrating your project to the new MSBuild15 format?

@kimbyungeun
Copy link

@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.

@Aaronontheweb
Copy link
Member

Looks like there isn't going to be an official MSFT tooling solution to this problem any time soon dotnet/sdk#41352 (comment)

@Aaronontheweb
Copy link
Member

I put this on Petabridge's Q4 OKRs - we're going to have this fixed before the end of the year.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
rosyln-analyzer Issues that should be addressed via user-exposed Roslyn analyzers.
Projects
None yet
Development

No branches or pull requests

4 participants