I need to do multi targeting for one of the sample application that I was working on. Here is the structure.
I have an AppOne(Console App) and two class libraries(CLSOne, CLSTwo). AppOne calls CLSOne. CLSOne call CLSTwo. CLSTwo has logic that interacts with azure to fetch secret from Key vault. CLSTwo has dependencies to Microsoft.Azure.KeyVault & Microsoft.Azure.Services.AppAuthentication.
All of the above is in DotNet Framework. Now I want to multitarget this application to DotNet Standard 2.0 without changing the csproj format.
Can someone help me out how can I achieve this?