AspNetCore.Identity.MongoDbCore icon indicating copy to clipboard operation
AspNetCore.Identity.MongoDbCore copied to clipboard

This work on .net6

Open domizacz opened this issue 3 years ago • 3 comments

This work on .net 6

domizacz avatar Feb 17 '22 22:02 domizacz

Works for me

enzo-ae avatar Apr 22 '22 09:04 enzo-ae

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.

d-barker avatar Aug 18 '22 17:08 d-barker

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

d-barker avatar Aug 19 '22 09:08 d-barker