So I have an app live on the App Store and Google Play.
The project consists of:
- An Android project and iOS project
- Several PCL projects (Presentaion, Business, Data, BDO, Framework)
- And several .NetFramework 4.6 web-service projects that reference the BDO and Framework PCLs.
Is there a significant benefit in converting this solution into .netstandard2.0 projects and an shproj?
There are quite a few nuget packages in both the mobile projects and the web-service projects, and I believe I'll have to upgrade to .NetFramework 4.6.1 or higher. I'm concerned about introducing incompatibilities or run-time issues.
Thanks