Hi @世云 向 ,
so that .NET Framework programs can access .NET 6 programs
What do you mean by "access"?
It is recommended that you update your .NET Framework program to .net6.
If you insist, you can try the following steps. (Remember to back up your project!)
- Unload Project.
- Edit the csproj file's PropertyGroup.
<PropertyGroup> <TargetFramework>net472</TargetFramework> </PropertyGroup>
- reload the project.
- Set the output type.
- Add the missing references.
Best Regards.
Jiachen Li
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.