Reputation: 916
I am currently working on an AAD migration. So prior to it it was Windows authentication. I disabled in the Web.config & in .csproj as mentioned in the Link
But this time it's giving me the error "An incompatible authentication configuration was found in this project ()". I have no idea what is it. In the Entire project, the only Single Web.config file is there. Please help out if someone have fixed this .
Upvotes: 0
Views: 550
Reputation: 423
I had recently the same problem trying to run the AAD Authentication wizard on a simple Asp.Net Core 2.2 App with no authentication set.
Message : "An incompatible authentication configuration was found in this project (Individual User Accounts)"
Cause : appsettings.json file with a ConnectionString named "DefaultConnection" :
"ConnectionStrings": { "DefaultConnection": "" }
Upvotes: 4
Reputation: 916
Basically we have 2 options to migrate an application to AAD from different authentication process.
Upvotes: 1