Browse Source

Merge branch 'main' of github.com:WangJunZzz/abp-vnext-pro

abp4.x 4.4.0.20
王军 4 years ago
parent
commit
4f23f5c5f2
  1. 0
      aspnet-core/modules/DataDictionaryManagement/src/CompanyName.ProjectName.DataDictionaryManagement.Domain/DataDictionaries/Caches/DataDictionaryCacheItemInvalidator.cs
  2. 2
      aspnet-core/modules/DataDictionaryManagement/src/CompanyName.ProjectName.DataDictionaryManagement.Domain/DataDictionaries/DataDictionaryManager.cs
  3. 2
      aspnet-core/services/host/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs
  4. 1
      aspnet-core/services/host/CompanyName.ProjectName.HttpApi.Host/appsettings.json

0
aspnet-core/modules/DataDictionaryManagement/src/CompanyName.ProjectName.DataDictionaryManagement.Domain/DataDictionaries/Caches/DataDictionaryCacheItemInvalidato.cs → aspnet-core/modules/DataDictionaryManagement/src/CompanyName.ProjectName.DataDictionaryManagement.Domain/DataDictionaries/Caches/DataDictionaryCacheItemInvalidator.cs

2
aspnet-core/modules/DataDictionaryManagement/src/CompanyName.ProjectName.DataDictionaryManagement.Domain/DataDictionaries/DataDictionaryManager.cs

@ -89,7 +89,7 @@ namespace CompanyName.ProjectName.DataDictionaryManagement.DataDictionaries
}
entity.AddDetail(GuidGenerator.Create(), code, displayText, order, description);
return await _dataDictionaryRepository.UpdateAsync(entity);
return await _dataDictionaryRepository.InsertAsync(entity);
}
/// <summary>

2
aspnet-core/services/host/CompanyName.ProjectName.HttpApi.Host/ProjectNameHttpApiHostModule.cs

@ -264,7 +264,7 @@ namespace CompanyName.ProjectName
private void ConfigurationStsHttpClient(ServiceConfigurationContext context)
{
context.Services.AddHttpClient(HttpClientNameConsts.Sts,
context.Services.AddHttpClient(context.Services.GetConfiguration().GetSection("HttpClient:Sts:Name").Value,
options =>
{
options.BaseAddress =

1
aspnet-core/services/host/CompanyName.ProjectName.HttpApi.Host/appsettings.json

@ -48,6 +48,7 @@
},
"HttpClient": {
"Sts": {
"Name": "Sts",
"Url": "http://localhost:44354"
}
},

Loading…
Cancel
Save