Reputation: 89
Ive build out a service as a console application, it exists across 2 different projects in the solution, both are in .NET framework. I am wanting to add in an api level to this and am wondering if I should continue to use .NET framework for the web application project, or if I can use .NET Core without messing anything up.
Upvotes: 0
Views: 778
Reputation: 126
It all depends on the APIs you use in your application. If you only use APIs included in .NET Standard
then no problem to use them in an application under .NET 6
. Otherwise I join Kirk Woll to migrate your code under .NET 6
especially since the unification of the platform. I think it will remain only .NET 6
aka .NET core
in the future.
Upvotes: 1