Skip to content

Commit 2c3537b

Browse files
authored
Merge pull request #647 from aspnetboilerplate/System.Text.Json
Using `System.Text.Json` to replace `Newtonsoft`.
2 parents 1dcae73 + 02afede commit 2c3537b

File tree

15 files changed

+2084
-61
lines changed

15 files changed

+2084
-61
lines changed

aspnet-core/NuGet.Config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
5+
<add key="ABP Nightly Source" value="https://www.myget.org/F/abp-nightly/api/v3/index.json" />
6+
</packageSources>
7+
</configuration>

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/AbpCompanyName.AbpProjectName.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Abp.AutoMapper" Version="9.0.0" />
22-
<PackageReference Include="Abp.ZeroCore.EntityFrameworkCore" Version="9.0.0" />
21+
<PackageReference Include="Abp.AutoMapper" Version="9.1.0-preview20240125" />
22+
<PackageReference Include="Abp.ZeroCore.EntityFrameworkCore" Version="9.1.0-preview20240125" />
2323
<PackageReference Include="Castle.Windsor.MsDependencyInjection" Version="4.1.0" />
2424
</ItemGroup>
2525

aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Identity/SecurityStampValidator.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ public class SecurityStampValidator : AbpSecurityStampValidator<Tenant, Role, Us
1515
public SecurityStampValidator(
1616
IOptions<SecurityStampValidatorOptions> options,
1717
SignInManager signInManager,
18-
ISystemClock systemClock,
1918
ILoggerFactory loggerFactory,
2019
IUnitOfWorkManager unitOfWorkManager)
21-
: base(options, signInManager, systemClock, loggerFactory, unitOfWorkManager)
20+
: base(options, signInManager, loggerFactory, unitOfWorkManager)
2221
{
2322
}
2423
}

0 commit comments

Comments
 (0)