Project Reunion & Nuget: target framework issue #801
-
Hi. When I'm creating a ProjectReunion solution, it has TargetFramework: net5.0-windows10.0.19041 The problem is my local nuget server, has class library packages, that have netstandard2.1 target framework. And nuget filter think, that net5.0-windows10.0.19041 is not compatible with my nuget packages, but it is. At the same time console app with TargetFramework net5.0 sees nuget packages. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@LeftTwixWand Not seeing that behavior here, can you share more details/a sample project? Or list any errors? Per .NET TFM documentation, .NET 5.0 TFMs (OS specific or not) are compatible with .NET Standard 2.1 libraries. I was able to create a local Project Reunion app targeting |
Beta Was this translation helpful? Give feedback.
@LeftTwixWand Not seeing that behavior here, can you share more details/a sample project? Or list any errors?
Per .NET TFM documentation, .NET 5.0 TFMs (OS specific or not) are compatible with .NET Standard 2.1 libraries. I was able to create a local Project Reunion app targeting
net5.0-windows10.0.19041.0
and successfully consumed a library via NuGet targeting onlynetstandard2.1
.