AspNetCore.Identity.MongoDbCore
AspNetCore.Identity.MongoDbCore copied to clipboard
This work on .net6
This work on .net 6
Works for me
I have created a PR that updates the packages and targets .net6
I am getting an error where a project that is targeting net6 but uses a standard library that also uses this library is throwing an error with a netcoreapp3.1 reference in the nuget path...
Testhost process exited with error: Error:
An assembly specified in the application dependencies manifest (Diana.Messaging.Tests.deps.json) was not found:
package: 'AspNetCore.Identity.MongoDbCore', version: '3.1.2'
path: 'lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.dll'
. Please check the diagnostic logs for more information.
Test Run Aborted.
OK found my issue, was an interesting journey, the cause of above, was due to the fact I was missing this:
<PackageReference Include="Microsoft.NET.Test.Sdk">
<Version>17.3.0</Version>
</PackageReference>
sigh