Skip to content

Commit

Permalink
nuget updates; net6 as last actual framework; v8.3.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vova3211 committed Sep 1, 2024
1 parent 8d21610 commit 883702d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Tests/MigrationTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
Expand Down
13 changes: 8 additions & 5 deletions Tests/Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="Mongo2Go" Version="3.1.3" />
<PackageReference Include="NUnit" Version="3.13.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="coverlet.collector" Version="3.0.2" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions samples/TestSite/TestSite.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<UserSecretsId>aspnet-TestSite-4862F257-7F38-4DD8-A1E1-A4E86B434B28</UserSecretsId>
<DockerDefaultTargetOS>Windows</DockerDefaultTargetOS>
</PropertyGroup>


<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.33" />
</ItemGroup>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<Authors>Matteo Fabbri</Authors>
<Company />
<Product>AspNetCore.Identity.Mongo</Product>
<Version>8.3.2</Version>
<AssemblyVersion>8.3.2.0</AssemblyVersion>
<FileVersion>8.3.2.0</FileVersion>
<Version>8.3.4</Version>
<AssemblyVersion>8.3.4.0</AssemblyVersion>
<FileVersion>8.3.4.0</FileVersion>
<PackageProjectUrl>https://github.com/matteofabbri/AspNetCore.Identity.Mongo</PackageProjectUrl>
<NeutralLanguage />
<PackageReleaseNotes>Removed obsolete properties.</PackageReleaseNotes>
Expand All @@ -26,7 +26,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MongoDB.Driver" Version="2.14.1" />
<PackageReference Include="MongoDB.Driver" Version="2.28.0" />
</ItemGroup>

<ItemGroup Condition="$(TargetFramework) != 'netstandard2.1'">
Expand Down
3 changes: 2 additions & 1 deletion src/AspNetCore.Identity.Mongo/Migrations/BaseMigration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ namespace AspNetCore.Identity.Mongo.Migrations
internal abstract class BaseMigration
{
private static List<BaseMigration> _migrations;
public static List<BaseMigration> Migrations {
public static List<BaseMigration> Migrations
{
get
{
if (_migrations == null)
Expand Down

0 comments on commit 883702d

Please # to comment.