How can I get Microsoft.AspNetCore.Authentication.OAuth 9.0 as a standalone assembly? #63638
-
I am using the When referencing the AspNetCore framework through a <ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup> However, the class library cannot be used from a Blazor WASM project. Now, if I try to reference <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.OAuth" />
</ItemGroup> then the most recent version I find on NuGet is 2.3.0, which is still using Newtonsoft, and is not compatible with my own code, which is using How (or where) can I get the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can't - the NuGet package is not shipped separately, which is why you can't find any versions newer than 2.x in NuGet.org. |
Beta Was this translation helpful? Give feedback.
You can't - the NuGet package is not shipped separately, which is why you can't find any versions newer than 2.x in NuGet.org.