Skip to content

Commit

Permalink
- replace old TFMs with ns2.0 (#26)
Browse files Browse the repository at this point in the history
- rebuild against linq2db 5.4.1
  • Loading branch information
MaceWindu authored Jul 8, 2024
1 parent b7739f5 commit a9ca319
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/LinqToDB.Identity/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var column in
Expression.Convert(Expression.PropertyOrField(p, column.MemberName), typeof(object)),
p);

var val = column.MemberAccessor.Getter(obj);
var val = column.MemberAccessor.GetValue(obj);
query = query.Set(expr, val);
}

Expand Down
19 changes: 8 additions & 11 deletions src/LinqToDB.Identity/LinqToDB.Identity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<Description>ASP.NET Core Identity provider that uses LinqToDB.</Description>
<VersionPrefix>3.5.0</VersionPrefix>
<Version>3.5.0</Version>
<PackageVersion>3.5.0</PackageVersion>
<VersionPrefix>4.0.0</VersionPrefix>
<Version>4.0.0</Version>
<PackageVersion>4.0.0</PackageVersion>

<Authors>Ilya Chudin</Authors>

<TargetFrameworks>net461;netstandard2.0;netcoreapp2.1</TargetFrameworks>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down Expand Up @@ -41,14 +41,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="linq2db" Version="5.0.0" />
<PackageReference Include="linq2db" Version="5.4.1" />

<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.39" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="6.0.31" />
</ItemGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='netcoreapp2.1'">
<DefineConstants>$(DefineConstants);NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
</Project>

0 comments on commit a9ca319

Please sign in to comment.