I have a class library using core 6.0
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
I would like to use this library either in a core 6.0 framework project or in a WPF NET 4.8 framework. so actually, I cant reference the library core 6 in a project written in Net 4.8
I would like to use the same library (same source code) for both environments, how I could resolve my problem, is it possible to use a different configuration Framework for the same source code?
