Skip to content

Commit 4e779dc

Browse files
authored
Merge pull request #117 from sgentry/feature/add-dotnet6-target
add dotnet 6 target
2 parents 374470b + f7f3f96 commit 4e779dc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This is a MongoDB provider for the ASP.NET Core Identity framework. It is comple
2222

2323
## Dot Net Core Versions support
2424

25-
Library supports **.Net 5.0**, **.Net Core 3.1**, **.Net Core 2.1**
25+
Library supports **.Net 6.0**, **.Net 5.0**, **.Net Core 3.1**, **.Net Core 2.1**
2626
simultaneously started from 8.3.0 nuget package.
2727

2828
## How to use:

src/AspNetCore.Identity.Mongo/AspNetCore.Identity.Mongo.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net5.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
66
<ApplicationIcon />
77
<StartupObject />
88
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -26,18 +26,18 @@
2626
</PropertyGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="MongoDB.Driver" Version="2.13.2" />
29+
<PackageReference Include="MongoDB.Driver" Version="2.14.1" />
3030
</ItemGroup>
3131

3232
<ItemGroup Condition="$(TargetFramework) != 'netstandard2.1'">
3333
<FrameworkReference Include="Microsoft.AspNetCore.App" />
3434
</ItemGroup>
3535

3636
<ItemGroup Condition="$(TargetFramework) == 'netstandard2.1'">
37-
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.1.2" />
38-
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.2" />
39-
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="2.1.6" />
40-
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="2.1.6" />
37+
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
38+
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
39+
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="6.0.1" />
40+
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="6.0.1" />
4141
</ItemGroup>
4242

4343
<ItemGroup>

0 commit comments

Comments
 (0)