学 赵
1 year ago
247 changed files with 12283 additions and 12139 deletions
File diff suppressed because one or more lines are too long
@ -0,0 +1,52 @@ |
|||||
|
export default function () { |
||||
|
return { |
||||
|
title: "登录", |
||||
|
type: "object", |
||||
|
properties: { |
||||
|
username: { |
||||
|
title: "用户名", |
||||
|
type: "string", |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: "用户名不能为空", |
||||
|
}, |
||||
|
{ |
||||
|
max: 64, |
||||
|
message: "用户名的最大长度为 64", |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
password: { |
||||
|
title: "密码", |
||||
|
type: "string", |
||||
|
format: "password", |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: "密码不能为空", |
||||
|
}, |
||||
|
{ |
||||
|
max: 64, |
||||
|
message: "密码的最大长度为 64", |
||||
|
}, |
||||
|
{ |
||||
|
message: "DataTypeAttribute", |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
client_id: { |
||||
|
default: "basic-web", |
||||
|
hidden: true, |
||||
|
}, |
||||
|
grant_type: { |
||||
|
default: "password", |
||||
|
hidden: true, |
||||
|
}, |
||||
|
scope: { |
||||
|
default: "WebAppGateway BaseService", |
||||
|
hidden: true, |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
} |
@ -0,0 +1,50 @@ |
|||||
|
const schema = { |
||||
|
title: "角色", |
||||
|
type: "object", |
||||
|
properties: { |
||||
|
name: { |
||||
|
title: "角色名", |
||||
|
type: "string", |
||||
|
showForList: true, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
}, |
||||
|
{ |
||||
|
max: 64, |
||||
|
message: "用户名的最大长度为 64", |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
|
||||
|
export default function () { |
||||
|
return { |
||||
|
query: { |
||||
|
url: "identity/roles", |
||||
|
method: "get", |
||||
|
schema: { |
||||
|
title: "用户", |
||||
|
type: "object", |
||||
|
properties: { |
||||
|
filter: { |
||||
|
title: "角色名", |
||||
|
type: "string", |
||||
|
}, |
||||
|
skipCount: { |
||||
|
hidden: true, |
||||
|
default: 0, |
||||
|
}, |
||||
|
maxResultCount: { |
||||
|
hidden: true, |
||||
|
default: 10, |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
table: { |
||||
|
schema: schema, |
||||
|
}, |
||||
|
}; |
||||
|
} |
@ -0,0 +1,98 @@ |
|||||
|
const schema = { |
||||
|
title: "用户", |
||||
|
type: "object", |
||||
|
properties: { |
||||
|
userName: { |
||||
|
title: "用户名", |
||||
|
type: "string", |
||||
|
showForList: true, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
}, |
||||
|
{ |
||||
|
max: 64, |
||||
|
message: "用户名的最大长度为 64", |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
phoneNumber: { |
||||
|
title: "电话", |
||||
|
type: "string", |
||||
|
input: "password", |
||||
|
showForList: true, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
name: { |
||||
|
title: "姓名", |
||||
|
type: "string", |
||||
|
showForList: true, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
email: { |
||||
|
title: "邮箱", |
||||
|
type: "string", |
||||
|
showForList: true, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
roleNames: { |
||||
|
title: "角色", |
||||
|
type: "array", |
||||
|
input: "select", |
||||
|
multiple: true, |
||||
|
}, |
||||
|
password: { |
||||
|
title: "密码", |
||||
|
type: "string", |
||||
|
input: "password", |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: "密码不能为空", |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
|
||||
|
export default function () { |
||||
|
return { |
||||
|
query: { |
||||
|
url: "base/user", |
||||
|
method: "get", |
||||
|
schema: { |
||||
|
title: "用户", |
||||
|
type: "object", |
||||
|
properties: { |
||||
|
filter: { |
||||
|
title: "用户名", |
||||
|
type: "string", |
||||
|
}, |
||||
|
skipCount: { |
||||
|
hidden: true, |
||||
|
default: 0, |
||||
|
}, |
||||
|
maxResultCount: { |
||||
|
hidden: true, |
||||
|
default: 10, |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
table: { |
||||
|
schema: schema, |
||||
|
}, |
||||
|
}; |
||||
|
} |
@ -0,0 +1,101 @@ |
|||||
|
export default [ |
||||
|
{ |
||||
|
path: "home", |
||||
|
meta: { |
||||
|
type: "page", |
||||
|
title: "首页", |
||||
|
icon: "home", |
||||
|
public: true, |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
path: "base-data", |
||||
|
meta: { |
||||
|
type: "group", |
||||
|
title: "基础数据", |
||||
|
icon: "folder", |
||||
|
}, |
||||
|
children: [ |
||||
|
{ |
||||
|
path: "user", |
||||
|
meta: { |
||||
|
type: "page", |
||||
|
title: "用户管理", |
||||
|
icon: "file", |
||||
|
permission: "AbpIdentity.Users", |
||||
|
}, |
||||
|
children: [ |
||||
|
{ |
||||
|
path: "create", |
||||
|
meta: { |
||||
|
type: "button", |
||||
|
title: "新建", |
||||
|
icon: "file", |
||||
|
permission: "AbpIdentity.Users.Create", |
||||
|
isTop: true, |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
path: "update", |
||||
|
meta: { |
||||
|
type: "button", |
||||
|
title: "编辑", |
||||
|
icon: "file", |
||||
|
htmlClass: "el-button--primary", |
||||
|
permission: "AbpIdentity.Users.Update", |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
path: "delete", |
||||
|
meta: { |
||||
|
type: "button", |
||||
|
title: "删除", |
||||
|
icon: "file", |
||||
|
permission: "AbpIdentity.Users.Delete", |
||||
|
}, |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
{ |
||||
|
path: "role", |
||||
|
meta: { |
||||
|
type: "page", |
||||
|
title: "角色管理", |
||||
|
icon: "file", |
||||
|
permission: "AbpIdentity.Users", |
||||
|
}, |
||||
|
children: [ |
||||
|
{ |
||||
|
path: "create", |
||||
|
meta: { |
||||
|
type: "button", |
||||
|
title: "新建", |
||||
|
icon: "file", |
||||
|
permission: "AbpIdentity.Users.Create", |
||||
|
isTop: true, |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
path: "update", |
||||
|
meta: { |
||||
|
type: "button", |
||||
|
title: "编辑", |
||||
|
icon: "file", |
||||
|
htmlClass: "el-button--primary", |
||||
|
permission: "AbpIdentity.Users.Update", |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
path: "delete", |
||||
|
meta: { |
||||
|
type: "button", |
||||
|
title: "删除", |
||||
|
icon: "file", |
||||
|
permission: "AbpIdentity.Users.Delete", |
||||
|
}, |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
]; |
@ -1,3 +1,3 @@ |
|||||
export default { |
export default { |
||||
template: `404:{{$route}}`, |
template: `404`, |
||||
}; |
}; |
||||
|
@ -0,0 +1,17 @@ |
|||||
|
import AppList from "../../components/list/index.js"; |
||||
|
import html from "html"; |
||||
|
import useConfig from "../../models/role.js"; |
||||
|
|
||||
|
export default { |
||||
|
components: { AppList }, |
||||
|
template: html`<app-list :config="config" @command="onCommand" />`, |
||||
|
setup() { |
||||
|
// 变量定义
|
||||
|
const config = useConfig(); |
||||
|
// 函数定义
|
||||
|
const onCommand = (item, rows) => { |
||||
|
console.log(item.path, item, rows); |
||||
|
}; |
||||
|
return { config, onCommand }; |
||||
|
}, |
||||
|
}; |
@ -0,0 +1,17 @@ |
|||||
|
import AppList from "../../components/list/index.js"; |
||||
|
import html from "html"; |
||||
|
import useConfig from "../../models/user.js"; |
||||
|
|
||||
|
export default { |
||||
|
components: { AppList }, |
||||
|
template: html`<app-list :config="config" @command="onCommand" />`, |
||||
|
setup() { |
||||
|
// 变量定义
|
||||
|
const config = useConfig(); |
||||
|
// 函数定义
|
||||
|
const onCommand = (item, rows) => { |
||||
|
console.log(item.path, item, rows); |
||||
|
}; |
||||
|
return { config, onCommand }; |
||||
|
}, |
||||
|
}; |
@ -1,15 +0,0 @@ |
|||||
import AppList from "../components/list/index.js"; |
|
||||
import html from "html"; |
|
||||
import router from "../router/index.js"; |
|
||||
|
|
||||
export default { |
|
||||
components: { AppList }, |
|
||||
template: html`<app-list @command="onCommand"> </app-list>`, |
|
||||
setup() { |
|
||||
console.log(router.currentRoute.value.fullPath); |
|
||||
const onCommand = (item, rows) => { |
|
||||
console.log(item.path, item, rows); |
|
||||
}; |
|
||||
return { onCommand }; |
|
||||
}, |
|
||||
}; |
|
@ -0,0 +1,21 @@ |
|||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
using Win.Sfs.Shared.Filter; |
||||
|
|
||||
|
namespace Win.Sfs.SettleAccount.Bases |
||||
|
{ |
||||
|
public class RequestInputBase: PagedAndSortedResultRequestDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 导出文件类型
|
||||
|
/// </summary>
|
||||
|
public int FileType { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 高级检索
|
||||
|
/// </summary>
|
||||
|
[Display(Name = "高级检索")] |
||||
|
public virtual List<FilterCondition> Filters { get; set; } = new List<FilterCondition>(); |
||||
|
} |
||||
|
} |
@ -0,0 +1,150 @@ |
|||||
|
using Castle.Core.Internal; |
||||
|
using Magicodes.ExporterAndImporter.Core; |
||||
|
using Magicodes.ExporterAndImporter.Csv; |
||||
|
using Magicodes.ExporterAndImporter.Excel; |
||||
|
using Microsoft.AspNetCore.Http; |
||||
|
using Microsoft.AspNetCore.Mvc; |
||||
|
using Shouldly; |
||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using System.Linq; |
||||
|
using System.Reflection; |
||||
|
using System.Threading.Tasks; |
||||
|
using Volo.Abp.Application.Dtos; |
||||
|
using Volo.Abp.Application.Services; |
||||
|
using Volo.Abp.Domain.Entities; |
||||
|
using Win.Sfs.BaseData.ImportExcelCommon; |
||||
|
using Win.Sfs.SettleAccount.Constant; |
||||
|
using Win.Sfs.SettleAccount.Entities.Prices; |
||||
|
using Win.Sfs.SettleAccount.ExcelImporter; |
||||
|
using Win.Sfs.Shared.RepositoryBase; |
||||
|
|
||||
|
namespace Win.Sfs.SettleAccount.Bases |
||||
|
{ |
||||
|
public abstract class CurdBaseAppService<TEntity, TEntityDto, TRequestInput, TCreateInput, TImportInput, TExportDto> : ApplicationService |
||||
|
where TEntity : class, IEntity<Guid> |
||||
|
where TEntityDto : class, IEntityDto<Guid>, new() |
||||
|
where TRequestInput : RequestInputBase |
||||
|
where TImportInput : class, new() |
||||
|
where TExportDto : class, new() |
||||
|
{ |
||||
|
private readonly INormalEfCoreRepository<TEntity, Guid> _repository; |
||||
|
private readonly IExcelImportAppService _excelImportService; |
||||
|
|
||||
|
protected CurdBaseAppService(INormalEfCoreRepository<TEntity, Guid> repository, IExcelImportAppService excelImportService) |
||||
|
{ |
||||
|
_repository = repository; |
||||
|
_excelImportService = excelImportService; |
||||
|
} |
||||
|
|
||||
|
#region 导入、导出
|
||||
|
/// <summary>
|
||||
|
/// 获取导入模板
|
||||
|
/// </summary>
|
||||
|
[HttpPost("import-template")] |
||||
|
public virtual async Task<IActionResult> ImportTemplateAsync() |
||||
|
{ |
||||
|
await Task.CompletedTask; |
||||
|
return new Microsoft.AspNetCore.Mvc.OkResult(); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 导入
|
||||
|
/// </summary>
|
||||
|
[HttpPost] |
||||
|
[Route("Import")] |
||||
|
public virtual async Task<string> ImportAsync([FromForm] IFormFileCollection files, string version) |
||||
|
{ |
||||
|
await Task.CompletedTask; |
||||
|
return ApplicationConsts.SuccessStr; |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 导出
|
||||
|
/// </summary>
|
||||
|
[HttpPost] |
||||
|
[Route("Export")] |
||||
|
public virtual async Task<string> ExportAsync(TRequestInput input) |
||||
|
{ |
||||
|
IExporter _csv = new CsvExporter(); |
||||
|
IExporter _excel = new ExcelExporter(); |
||||
|
|
||||
|
var entities = await _repository.GetListByFilterAsync(input.Filters, input.Sorting, int.MaxValue, 0, true); |
||||
|
var dtoDetails = ObjectMapper.Map<List<TEntity>, List<TExportDto>>(entities); |
||||
|
|
||||
|
var classDisplayName = typeof(TExportDto).GetCustomAttribute<DisplayAttribute>()?.Name ?? typeof(TExportDto).Name; |
||||
|
string _fileName = $"{classDisplayName}_{Guid.NewGuid().ToString()}.xlsx"; |
||||
|
byte[] result = null; |
||||
|
|
||||
|
switch (input.FileType) |
||||
|
{ |
||||
|
case 0: |
||||
|
result = await _csv.ExportAsByteArray(dtoDetails); |
||||
|
break; |
||||
|
case 1: |
||||
|
result = await _excel.ExportAsByteArray(dtoDetails); |
||||
|
break; |
||||
|
} |
||||
|
result.ShouldNotBeNull(); |
||||
|
|
||||
|
//保存导出文件到服务器存成二进制
|
||||
|
await _excelImportService.SaveBlobAsync( |
||||
|
new SaveExcelImportInputDto |
||||
|
{ |
||||
|
Name = _fileName, |
||||
|
Content = result |
||||
|
} |
||||
|
); |
||||
|
return _fileName; |
||||
|
} |
||||
|
#endregion
|
||||
|
|
||||
|
#region CURD
|
||||
|
/// <summary>
|
||||
|
/// 新增
|
||||
|
/// </summary>
|
||||
|
[HttpPost("")] |
||||
|
public virtual async Task<TEntityDto> CreateAsync(TCreateInput input) |
||||
|
{ |
||||
|
var entity = ObjectMapper.Map<TCreateInput, TEntity>(input); |
||||
|
await _repository.InsertAsync(entity, autoSave: true).ConfigureAwait(continueOnCapturedContext: false); |
||||
|
return ObjectMapper.Map<TEntity, TEntityDto > (entity); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 获取列表
|
||||
|
/// </summary>
|
||||
|
[HttpPost] |
||||
|
[Route("list")] |
||||
|
public virtual async Task<PagedResultDto<TEntityDto>> GetListAsync(TRequestInput input) |
||||
|
{ |
||||
|
var entitys = await _repository.GetListByFilterAsync(input.Filters, input.Sorting, input.MaxResultCount, input.SkipCount); |
||||
|
var totalCount = await _repository.GetCountByFilterAsync(input.Filters); |
||||
|
var dtos = ObjectMapper.Map<List<TEntity>, List<TEntityDto>>(entitys); |
||||
|
return new PagedResultDto<TEntityDto>(totalCount, dtos); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 删除
|
||||
|
/// </summary>
|
||||
|
[HttpDelete] |
||||
|
[Route("{id}")] |
||||
|
virtual public async Task DeleteAsync(Guid id) |
||||
|
{ |
||||
|
await _repository.DeleteAsync(id); |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 批量删除
|
||||
|
/// </summary>
|
||||
|
[HttpPost] |
||||
|
[Route("delete")] |
||||
|
virtual public async Task<bool> DeleteListAsync(List<Guid> ids) |
||||
|
{ |
||||
|
return await _repository.DeleteListAsync(ids); |
||||
|
} |
||||
|
#endregion
|
||||
|
|
||||
|
} |
||||
|
} |
File diff suppressed because it is too large
@ -0,0 +1,63 @@ |
|||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||
|
|
||||
|
namespace Win.Sfs.SettleAccount.Migrations |
||||
|
{ |
||||
|
public partial class _202307101 : Migration |
||||
|
{ |
||||
|
protected override void Up(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.RenameColumn( |
||||
|
name: "EndDate", |
||||
|
table: "Set_PriceList", |
||||
|
newName: "EndTime"); |
||||
|
|
||||
|
migrationBuilder.RenameColumn( |
||||
|
name: "BeginDate", |
||||
|
table: "Set_PriceList", |
||||
|
newName: "BeginTime"); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "BusinessType", |
||||
|
table: "Set_PriceList", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "ClientCode", |
||||
|
table: "Set_PriceList", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "LU", |
||||
|
table: "Set_PriceList", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
} |
||||
|
|
||||
|
protected override void Down(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "BusinessType", |
||||
|
table: "Set_PriceList"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "ClientCode", |
||||
|
table: "Set_PriceList"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "LU", |
||||
|
table: "Set_PriceList"); |
||||
|
|
||||
|
migrationBuilder.RenameColumn( |
||||
|
name: "EndTime", |
||||
|
table: "Set_PriceList", |
||||
|
newName: "EndDate"); |
||||
|
|
||||
|
migrationBuilder.RenameColumn( |
||||
|
name: "BeginTime", |
||||
|
table: "Set_PriceList", |
||||
|
newName: "BeginDate"); |
||||
|
} |
||||
|
} |
||||
|
} |
File diff suppressed because it is too large
@ -0,0 +1,33 @@ |
|||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||
|
|
||||
|
namespace Win.Sfs.SettleAccount.Migrations |
||||
|
{ |
||||
|
public partial class _202307111 : Migration |
||||
|
{ |
||||
|
protected override void Up(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "ClientCode", |
||||
|
table: "Set_PriceListBJ", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
|
||||
|
migrationBuilder.AddColumn<string>( |
||||
|
name: "LU", |
||||
|
table: "Set_PriceListBJ", |
||||
|
type: "nvarchar(max)", |
||||
|
nullable: true); |
||||
|
} |
||||
|
|
||||
|
protected override void Down(MigrationBuilder migrationBuilder) |
||||
|
{ |
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "ClientCode", |
||||
|
table: "Set_PriceListBJ"); |
||||
|
|
||||
|
migrationBuilder.DropColumn( |
||||
|
name: "LU", |
||||
|
table: "Set_PriceListBJ"); |
||||
|
} |
||||
|
} |
||||
|
} |
@ -1,940 +0,0 @@ |
|||||
{ |
|
||||
"runtimeTarget": { |
|
||||
"name": ".NETCoreApp,Version=v5.0", |
|
||||
"signature": "" |
|
||||
}, |
|
||||
"compilationOptions": {}, |
|
||||
"targets": { |
|
||||
".NETCoreApp,Version=v5.0": { |
|
||||
"Win.Abp.Snowflakes/1.0.0": { |
|
||||
"dependencies": { |
|
||||
"Volo.Abp.Core": "4.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"Win.Abp.Snowflakes.dll": {} |
|
||||
} |
|
||||
}, |
|
||||
"JetBrains.Annotations/2020.1.0": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/JetBrains.Annotations.dll": { |
|
||||
"assemblyVersion": "2020.1.0.0", |
|
||||
"fileVersion": "2020.1.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Abstractions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Binder/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.CommandLine/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Physical": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Json/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.FileExtensions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Json": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Physical": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.DependencyInjection/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileProviders.Physical/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileSystemGlobbing": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileSystemGlobbing/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Hosting.Abstractions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Localization/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Localization.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Logging.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Options": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/net5.0/Microsoft.Extensions.Localization.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.52605" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Localization.Abstractions/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.52605" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Logging/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.DependencyInjection": "5.0.0", |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Logging.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Options": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Logging.Abstractions/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Options/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/net5.0/Microsoft.Extensions.Options.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Binder": "5.0.0", |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Options": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Primitives/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.NETCore.Platforms/1.1.0": {}, |
|
||||
"Microsoft.NETCore.Targets/1.1.0": {}, |
|
||||
"Nito.AsyncEx.Context/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Nito.AsyncEx.Tasks": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.AsyncEx.Context.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Nito.AsyncEx.Coordination/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Nito.AsyncEx.Tasks": "5.0.0", |
|
||||
"Nito.Collections.Deque": "1.0.4", |
|
||||
"Nito.Disposables": "2.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Nito.AsyncEx.Tasks/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Nito.Disposables": "2.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Nito.Collections.Deque/1.0.4": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.Collections.Deque.dll": { |
|
||||
"assemblyVersion": "1.0.4.0", |
|
||||
"fileVersion": "1.0.4.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Nito.Disposables/2.0.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections.Immutable": "1.7.1" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.Disposables.dll": { |
|
||||
"assemblyVersion": "2.0.0.0", |
|
||||
"fileVersion": "2.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"System.Collections/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Collections.Immutable/1.7.1": {}, |
|
||||
"System.ComponentModel.Annotations/4.7.0": {}, |
|
||||
"System.Diagnostics.Debug/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Globalization/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.IO/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Text.Encoding": "4.3.0", |
|
||||
"System.Threading.Tasks": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Linq/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections": "4.3.0", |
|
||||
"System.Diagnostics.Debug": "4.3.0", |
|
||||
"System.Resources.ResourceManager": "4.3.0", |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Runtime.Extensions": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Linq.Dynamic.Core/1.1.5": { |
|
||||
"runtime": { |
|
||||
"lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { |
|
||||
"assemblyVersion": "1.1.5.0", |
|
||||
"fileVersion": "1.1.5.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"System.Linq.Expressions/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections": "4.3.0", |
|
||||
"System.Diagnostics.Debug": "4.3.0", |
|
||||
"System.Globalization": "4.3.0", |
|
||||
"System.IO": "4.3.0", |
|
||||
"System.Linq": "4.3.0", |
|
||||
"System.ObjectModel": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Emit": "4.3.0", |
|
||||
"System.Reflection.Emit.ILGeneration": "4.3.0", |
|
||||
"System.Reflection.Emit.Lightweight": "4.3.0", |
|
||||
"System.Reflection.Extensions": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Reflection.TypeExtensions": "4.3.0", |
|
||||
"System.Resources.ResourceManager": "4.3.0", |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Runtime.Extensions": "4.3.0", |
|
||||
"System.Threading": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Linq.Queryable/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections": "4.3.0", |
|
||||
"System.Diagnostics.Debug": "4.3.0", |
|
||||
"System.Linq": "4.3.0", |
|
||||
"System.Linq.Expressions": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Extensions": "4.3.0", |
|
||||
"System.Resources.ResourceManager": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.ObjectModel/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections": "4.3.0", |
|
||||
"System.Diagnostics.Debug": "4.3.0", |
|
||||
"System.Resources.ResourceManager": "4.3.0", |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Threading": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.IO": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Emit/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.IO": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Emit.ILGeneration": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Emit.ILGeneration/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Emit.Lightweight/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Emit.ILGeneration": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Extensions/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Primitives/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.TypeExtensions/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Resources.ResourceManager/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Globalization": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Runtime/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Runtime.Extensions/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Runtime.Loader/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.IO": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Text.Encoding/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Threading/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Threading.Tasks": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Threading.Tasks/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"Volo.Abp.Core/4.0.0": { |
|
||||
"dependencies": { |
|
||||
"JetBrains.Annotations": "2020.1.0", |
|
||||
"Microsoft.Extensions.Configuration.CommandLine": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.UserSecrets": "5.0.0", |
|
||||
"Microsoft.Extensions.DependencyInjection": "5.0.0", |
|
||||
"Microsoft.Extensions.Hosting.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Localization": "5.0.0", |
|
||||
"Microsoft.Extensions.Logging": "5.0.0", |
|
||||
"Microsoft.Extensions.Options": "5.0.0", |
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0", |
|
||||
"Nito.AsyncEx.Context": "5.0.0", |
|
||||
"Nito.AsyncEx.Coordination": "5.0.0", |
|
||||
"System.Collections.Immutable": "1.7.1", |
|
||||
"System.ComponentModel.Annotations": "4.7.0", |
|
||||
"System.Linq.Dynamic.Core": "1.1.5", |
|
||||
"System.Linq.Queryable": "4.3.0", |
|
||||
"System.Runtime.Loader": "4.3.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Volo.Abp.Core.dll": { |
|
||||
"assemblyVersion": "4.0.0.0", |
|
||||
"fileVersion": "4.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"libraries": { |
|
||||
"Win.Abp.Snowflakes/1.0.0": { |
|
||||
"type": "project", |
|
||||
"serviceable": false, |
|
||||
"sha512": "" |
|
||||
}, |
|
||||
"JetBrains.Annotations/2020.1.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==", |
|
||||
"path": "jetbrains.annotations/2020.1.0", |
|
||||
"hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==", |
|
||||
"path": "microsoft.extensions.configuration/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", |
|
||||
"path": "microsoft.extensions.configuration.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Binder/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==", |
|
||||
"path": "microsoft.extensions.configuration.binder/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.CommandLine/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==", |
|
||||
"path": "microsoft.extensions.configuration.commandline/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==", |
|
||||
"path": "microsoft.extensions.configuration.environmentvariables/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==", |
|
||||
"path": "microsoft.extensions.configuration.fileextensions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Json/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==", |
|
||||
"path": "microsoft.extensions.configuration.json/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==", |
|
||||
"path": "microsoft.extensions.configuration.usersecrets/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.DependencyInjection/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", |
|
||||
"path": "microsoft.extensions.dependencyinjection/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", |
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==", |
|
||||
"path": "microsoft.extensions.fileproviders.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileProviders.Physical/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==", |
|
||||
"path": "microsoft.extensions.fileproviders.physical/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileSystemGlobbing/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", |
|
||||
"path": "microsoft.extensions.filesystemglobbing/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Hosting.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==", |
|
||||
"path": "microsoft.extensions.hosting.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Localization/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==", |
|
||||
"path": "microsoft.extensions.localization/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Localization.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==", |
|
||||
"path": "microsoft.extensions.localization.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Logging/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", |
|
||||
"path": "microsoft.extensions.logging/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Logging.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", |
|
||||
"path": "microsoft.extensions.logging.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Options/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", |
|
||||
"path": "microsoft.extensions.options/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==", |
|
||||
"path": "microsoft.extensions.options.configurationextensions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Primitives/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", |
|
||||
"path": "microsoft.extensions.primitives/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.NETCore.Platforms/1.1.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", |
|
||||
"path": "microsoft.netcore.platforms/1.1.0", |
|
||||
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.NETCore.Targets/1.1.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", |
|
||||
"path": "microsoft.netcore.targets/1.1.0", |
|
||||
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.AsyncEx.Context/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==", |
|
||||
"path": "nito.asyncex.context/5.0.0", |
|
||||
"hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.AsyncEx.Coordination/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==", |
|
||||
"path": "nito.asyncex.coordination/5.0.0", |
|
||||
"hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.AsyncEx.Tasks/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==", |
|
||||
"path": "nito.asyncex.tasks/5.0.0", |
|
||||
"hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.Collections.Deque/1.0.4": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==", |
|
||||
"path": "nito.collections.deque/1.0.4", |
|
||||
"hashPath": "nito.collections.deque.1.0.4.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.Disposables/2.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==", |
|
||||
"path": "nito.disposables/2.0.0", |
|
||||
"hashPath": "nito.disposables.2.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Collections/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", |
|
||||
"path": "system.collections/4.3.0", |
|
||||
"hashPath": "system.collections.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Collections.Immutable/1.7.1": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==", |
|
||||
"path": "system.collections.immutable/1.7.1", |
|
||||
"hashPath": "system.collections.immutable.1.7.1.nupkg.sha512" |
|
||||
}, |
|
||||
"System.ComponentModel.Annotations/4.7.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", |
|
||||
"path": "system.componentmodel.annotations/4.7.0", |
|
||||
"hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Diagnostics.Debug/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", |
|
||||
"path": "system.diagnostics.debug/4.3.0", |
|
||||
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Globalization/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", |
|
||||
"path": "system.globalization/4.3.0", |
|
||||
"hashPath": "system.globalization.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.IO/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", |
|
||||
"path": "system.io/4.3.0", |
|
||||
"hashPath": "system.io.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Linq/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", |
|
||||
"path": "system.linq/4.3.0", |
|
||||
"hashPath": "system.linq.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Linq.Dynamic.Core/1.1.5": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==", |
|
||||
"path": "system.linq.dynamic.core/1.1.5", |
|
||||
"hashPath": "system.linq.dynamic.core.1.1.5.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Linq.Expressions/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", |
|
||||
"path": "system.linq.expressions/4.3.0", |
|
||||
"hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Linq.Queryable/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", |
|
||||
"path": "system.linq.queryable/4.3.0", |
|
||||
"hashPath": "system.linq.queryable.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.ObjectModel/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", |
|
||||
"path": "system.objectmodel/4.3.0", |
|
||||
"hashPath": "system.objectmodel.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", |
|
||||
"path": "system.reflection/4.3.0", |
|
||||
"hashPath": "system.reflection.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Emit/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", |
|
||||
"path": "system.reflection.emit/4.3.0", |
|
||||
"hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Emit.ILGeneration/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", |
|
||||
"path": "system.reflection.emit.ilgeneration/4.3.0", |
|
||||
"hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Emit.Lightweight/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", |
|
||||
"path": "system.reflection.emit.lightweight/4.3.0", |
|
||||
"hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Extensions/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", |
|
||||
"path": "system.reflection.extensions/4.3.0", |
|
||||
"hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Primitives/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", |
|
||||
"path": "system.reflection.primitives/4.3.0", |
|
||||
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.TypeExtensions/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", |
|
||||
"path": "system.reflection.typeextensions/4.3.0", |
|
||||
"hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Resources.ResourceManager/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", |
|
||||
"path": "system.resources.resourcemanager/4.3.0", |
|
||||
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Runtime/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", |
|
||||
"path": "system.runtime/4.3.0", |
|
||||
"hashPath": "system.runtime.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Runtime.Extensions/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", |
|
||||
"path": "system.runtime.extensions/4.3.0", |
|
||||
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Runtime.Loader/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", |
|
||||
"path": "system.runtime.loader/4.3.0", |
|
||||
"hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Text.Encoding/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", |
|
||||
"path": "system.text.encoding/4.3.0", |
|
||||
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Threading/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", |
|
||||
"path": "system.threading/4.3.0", |
|
||||
"hashPath": "system.threading.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Threading.Tasks/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", |
|
||||
"path": "system.threading.tasks/4.3.0", |
|
||||
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Volo.Abp.Core/4.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==", |
|
||||
"path": "volo.abp.core/4.0.0", |
|
||||
"hashPath": "volo.abp.core.4.0.0.nupkg.sha512" |
|
||||
} |
|
||||
} |
|
||||
} |
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,940 +0,0 @@ |
|||||
{ |
|
||||
"runtimeTarget": { |
|
||||
"name": ".NETCoreApp,Version=v5.0", |
|
||||
"signature": "" |
|
||||
}, |
|
||||
"compilationOptions": {}, |
|
||||
"targets": { |
|
||||
".NETCoreApp,Version=v5.0": { |
|
||||
"Win.Abp.Snowflakes/1.0.0": { |
|
||||
"dependencies": { |
|
||||
"Volo.Abp.Core": "4.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"Win.Abp.Snowflakes.dll": {} |
|
||||
} |
|
||||
}, |
|
||||
"JetBrains.Annotations/2020.1.0": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/JetBrains.Annotations.dll": { |
|
||||
"assemblyVersion": "2020.1.0.0", |
|
||||
"fileVersion": "2020.1.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Abstractions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Binder/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.CommandLine/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Physical": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Json/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.FileExtensions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Json": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Physical": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.DependencyInjection/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileProviders.Physical/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileSystemGlobbing": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileSystemGlobbing/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Hosting.Abstractions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Localization/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Localization.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Logging.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Options": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/net5.0/Microsoft.Extensions.Localization.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.52605" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Localization.Abstractions/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/net5.0/Microsoft.Extensions.Localization.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.52605" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Logging/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.DependencyInjection": "5.0.0", |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Logging.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Options": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Logging.Abstractions/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Options/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/net5.0/Microsoft.Extensions.Options.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.Binder": "5.0.0", |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Options": "5.0.0", |
|
||||
"Microsoft.Extensions.Primitives": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.Extensions.Primitives/5.0.0": { |
|
||||
"runtime": { |
|
||||
"lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.20.51904" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Microsoft.NETCore.Platforms/1.1.0": {}, |
|
||||
"Microsoft.NETCore.Targets/1.1.0": {}, |
|
||||
"Nito.AsyncEx.Context/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Nito.AsyncEx.Tasks": "5.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.AsyncEx.Context.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Nito.AsyncEx.Coordination/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Nito.AsyncEx.Tasks": "5.0.0", |
|
||||
"Nito.Collections.Deque": "1.0.4", |
|
||||
"Nito.Disposables": "2.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Nito.AsyncEx.Tasks/5.0.0": { |
|
||||
"dependencies": { |
|
||||
"Nito.Disposables": "2.0.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { |
|
||||
"assemblyVersion": "5.0.0.0", |
|
||||
"fileVersion": "5.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Nito.Collections.Deque/1.0.4": { |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.Collections.Deque.dll": { |
|
||||
"assemblyVersion": "1.0.4.0", |
|
||||
"fileVersion": "1.0.4.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"Nito.Disposables/2.0.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections.Immutable": "1.7.1" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Nito.Disposables.dll": { |
|
||||
"assemblyVersion": "2.0.0.0", |
|
||||
"fileVersion": "2.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"System.Collections/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Collections.Immutable/1.7.1": {}, |
|
||||
"System.ComponentModel.Annotations/4.7.0": {}, |
|
||||
"System.Diagnostics.Debug/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Globalization/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.IO/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Text.Encoding": "4.3.0", |
|
||||
"System.Threading.Tasks": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Linq/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections": "4.3.0", |
|
||||
"System.Diagnostics.Debug": "4.3.0", |
|
||||
"System.Resources.ResourceManager": "4.3.0", |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Runtime.Extensions": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Linq.Dynamic.Core/1.1.5": { |
|
||||
"runtime": { |
|
||||
"lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll": { |
|
||||
"assemblyVersion": "1.1.5.0", |
|
||||
"fileVersion": "1.1.5.0" |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"System.Linq.Expressions/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections": "4.3.0", |
|
||||
"System.Diagnostics.Debug": "4.3.0", |
|
||||
"System.Globalization": "4.3.0", |
|
||||
"System.IO": "4.3.0", |
|
||||
"System.Linq": "4.3.0", |
|
||||
"System.ObjectModel": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Emit": "4.3.0", |
|
||||
"System.Reflection.Emit.ILGeneration": "4.3.0", |
|
||||
"System.Reflection.Emit.Lightweight": "4.3.0", |
|
||||
"System.Reflection.Extensions": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Reflection.TypeExtensions": "4.3.0", |
|
||||
"System.Resources.ResourceManager": "4.3.0", |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Runtime.Extensions": "4.3.0", |
|
||||
"System.Threading": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Linq.Queryable/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections": "4.3.0", |
|
||||
"System.Diagnostics.Debug": "4.3.0", |
|
||||
"System.Linq": "4.3.0", |
|
||||
"System.Linq.Expressions": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Extensions": "4.3.0", |
|
||||
"System.Resources.ResourceManager": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.ObjectModel/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Collections": "4.3.0", |
|
||||
"System.Diagnostics.Debug": "4.3.0", |
|
||||
"System.Resources.ResourceManager": "4.3.0", |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Threading": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.IO": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Emit/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.IO": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Emit.ILGeneration": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Emit.ILGeneration/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Emit.Lightweight/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Reflection.Emit.ILGeneration": "4.3.0", |
|
||||
"System.Reflection.Primitives": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Extensions/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.Primitives/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Reflection.TypeExtensions/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Resources.ResourceManager/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Globalization": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Runtime/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Runtime.Extensions/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Runtime.Loader/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.IO": "4.3.0", |
|
||||
"System.Reflection": "4.3.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Text.Encoding/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Threading/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"System.Runtime": "4.3.0", |
|
||||
"System.Threading.Tasks": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"System.Threading.Tasks/4.3.0": { |
|
||||
"dependencies": { |
|
||||
"Microsoft.NETCore.Platforms": "1.1.0", |
|
||||
"Microsoft.NETCore.Targets": "1.1.0", |
|
||||
"System.Runtime": "4.3.0" |
|
||||
} |
|
||||
}, |
|
||||
"Volo.Abp.Core/4.0.0": { |
|
||||
"dependencies": { |
|
||||
"JetBrains.Annotations": "2020.1.0", |
|
||||
"Microsoft.Extensions.Configuration.CommandLine": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0", |
|
||||
"Microsoft.Extensions.Configuration.UserSecrets": "5.0.0", |
|
||||
"Microsoft.Extensions.DependencyInjection": "5.0.0", |
|
||||
"Microsoft.Extensions.Hosting.Abstractions": "5.0.0", |
|
||||
"Microsoft.Extensions.Localization": "5.0.0", |
|
||||
"Microsoft.Extensions.Logging": "5.0.0", |
|
||||
"Microsoft.Extensions.Options": "5.0.0", |
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0", |
|
||||
"Nito.AsyncEx.Context": "5.0.0", |
|
||||
"Nito.AsyncEx.Coordination": "5.0.0", |
|
||||
"System.Collections.Immutable": "1.7.1", |
|
||||
"System.ComponentModel.Annotations": "4.7.0", |
|
||||
"System.Linq.Dynamic.Core": "1.1.5", |
|
||||
"System.Linq.Queryable": "4.3.0", |
|
||||
"System.Runtime.Loader": "4.3.0" |
|
||||
}, |
|
||||
"runtime": { |
|
||||
"lib/netstandard2.0/Volo.Abp.Core.dll": { |
|
||||
"assemblyVersion": "4.0.0.0", |
|
||||
"fileVersion": "4.0.0.0" |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
}, |
|
||||
"libraries": { |
|
||||
"Win.Abp.Snowflakes/1.0.0": { |
|
||||
"type": "project", |
|
||||
"serviceable": false, |
|
||||
"sha512": "" |
|
||||
}, |
|
||||
"JetBrains.Annotations/2020.1.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==", |
|
||||
"path": "jetbrains.annotations/2020.1.0", |
|
||||
"hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==", |
|
||||
"path": "microsoft.extensions.configuration/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", |
|
||||
"path": "microsoft.extensions.configuration.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Binder/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==", |
|
||||
"path": "microsoft.extensions.configuration.binder/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.CommandLine/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-OelM+VQdhZ0XMXsEQBq/bt3kFzD+EBGqR4TAgFDRAye0JfvHAaRi+3BxCRcwqUAwDhV0U0HieljBGHlTgYseRA==", |
|
||||
"path": "microsoft.extensions.configuration.commandline/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-fqh6y6hAi0Z0fRsb4B/mP9OkKkSlifh5osa+N/YSQ+/S2a//+zYApZMUC1XeP9fdjlgZoPQoZ72Q2eLHyKLddQ==", |
|
||||
"path": "microsoft.extensions.configuration.environmentvariables/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.FileExtensions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==", |
|
||||
"path": "microsoft.extensions.configuration.fileextensions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.Json/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==", |
|
||||
"path": "microsoft.extensions.configuration.json/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Configuration.UserSecrets/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-+tK3seG68106lN277YWQvqmfyI/89w0uTu/5Gz5VYSUu5TI4mqwsaWLlSmT9Bl1yW/i1Nr06gHJxqaqB5NU9Tw==", |
|
||||
"path": "microsoft.extensions.configuration.usersecrets/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.DependencyInjection/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", |
|
||||
"path": "microsoft.extensions.dependencyinjection/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", |
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==", |
|
||||
"path": "microsoft.extensions.fileproviders.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileProviders.Physical/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==", |
|
||||
"path": "microsoft.extensions.fileproviders.physical/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.FileSystemGlobbing/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", |
|
||||
"path": "microsoft.extensions.filesystemglobbing/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Hosting.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-cbUOCePYBl1UhM+N2zmDSUyJ6cODulbtUd9gEzMFIK3RQDtP/gJsE08oLcBSXH3Q1RAQ0ex7OAB3HeTKB9bXpg==", |
|
||||
"path": "microsoft.extensions.hosting.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Localization/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-PJ2TouziI0zcgiq2VapjNFkMsT05rZUfq0i6sY+59Ri6Mn9W7okJ1U5/CvetFDUAN0DHrXOTaaMSt5epUn6rQQ==", |
|
||||
"path": "microsoft.extensions.localization/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.localization.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Localization.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Uey8VI3FbPFLiLh+mnFN13DTbQASSuzV3ZeN9Oma2Y4YW7OBWjU9LAsvPISRBQHrwztXegSoCacFWqB9o992xQ==", |
|
||||
"path": "microsoft.extensions.localization.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Logging/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", |
|
||||
"path": "microsoft.extensions.logging/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Logging.Abstractions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", |
|
||||
"path": "microsoft.extensions.logging.abstractions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Options/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", |
|
||||
"path": "microsoft.extensions.options/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-280RxNJqOeQqq47aJLy5D9LN61CAWeuRA83gPToQ8B9jl9SNdQ5EXjlfvF66zQI5AXMl+C/3hGnbtIEN+X3mqA==", |
|
||||
"path": "microsoft.extensions.options.configurationextensions/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.Extensions.Primitives/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", |
|
||||
"path": "microsoft.extensions.primitives/5.0.0", |
|
||||
"hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.NETCore.Platforms/1.1.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", |
|
||||
"path": "microsoft.netcore.platforms/1.1.0", |
|
||||
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Microsoft.NETCore.Targets/1.1.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", |
|
||||
"path": "microsoft.netcore.targets/1.1.0", |
|
||||
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.AsyncEx.Context/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-Qnth1Ye+QSLg8P3fSFYzk7ue6oUUHQcKpLitgAig8xRFqTK5W1KTlfxF/Z8Eo0BuqZ17a5fAGtXrdKJsLqivZw==", |
|
||||
"path": "nito.asyncex.context/5.0.0", |
|
||||
"hashPath": "nito.asyncex.context.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.AsyncEx.Coordination/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-kjauyO8UMo/FGZO/M8TdjXB8ZlBPFOiRN8yakThaGQbYOywazQ0kGZ39SNr2gNNzsTxbZOUudBMYNo+IrtscbA==", |
|
||||
"path": "nito.asyncex.coordination/5.0.0", |
|
||||
"hashPath": "nito.asyncex.coordination.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.AsyncEx.Tasks/5.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ZtvotignafOLteP4oEjVcF3k2L8h73QUCaFpVKWbU+EOlW/I+JGkpMoXIl0rlwPcDmR84RxzggLRUNMaWlOosA==", |
|
||||
"path": "nito.asyncex.tasks/5.0.0", |
|
||||
"hashPath": "nito.asyncex.tasks.5.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.Collections.Deque/1.0.4": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-yGDKqCQ61i97MyfEUYG6+ln5vxpx11uA5M9+VV9B7stticbFm19YMI/G9w4AFYVBj5PbPi138P8IovkMFAL0Aw==", |
|
||||
"path": "nito.collections.deque/1.0.4", |
|
||||
"hashPath": "nito.collections.deque.1.0.4.nupkg.sha512" |
|
||||
}, |
|
||||
"Nito.Disposables/2.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ExJl/jTjegSLHGcwnmaYaI5xIlrefAsVdeLft7VLtXI2+W5irihiu36LizWvlaUpzY1/llo+YSh09uSHMu2VFw==", |
|
||||
"path": "nito.disposables/2.0.0", |
|
||||
"hashPath": "nito.disposables.2.0.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Collections/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", |
|
||||
"path": "system.collections/4.3.0", |
|
||||
"hashPath": "system.collections.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Collections.Immutable/1.7.1": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==", |
|
||||
"path": "system.collections.immutable/1.7.1", |
|
||||
"hashPath": "system.collections.immutable.1.7.1.nupkg.sha512" |
|
||||
}, |
|
||||
"System.ComponentModel.Annotations/4.7.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==", |
|
||||
"path": "system.componentmodel.annotations/4.7.0", |
|
||||
"hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Diagnostics.Debug/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", |
|
||||
"path": "system.diagnostics.debug/4.3.0", |
|
||||
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Globalization/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", |
|
||||
"path": "system.globalization/4.3.0", |
|
||||
"hashPath": "system.globalization.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.IO/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", |
|
||||
"path": "system.io/4.3.0", |
|
||||
"hashPath": "system.io.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Linq/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", |
|
||||
"path": "system.linq/4.3.0", |
|
||||
"hashPath": "system.linq.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Linq.Dynamic.Core/1.1.5": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-VxPRhLUvdALtBE6vdO83LxjSc3RQ9CPYwLofqKg3BkOxgz8xb4Z4vr/YhoSQ5NGHR7m6yhMDzUNUWUEeSTCHmA==", |
|
||||
"path": "system.linq.dynamic.core/1.1.5", |
|
||||
"hashPath": "system.linq.dynamic.core.1.1.5.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Linq.Expressions/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", |
|
||||
"path": "system.linq.expressions/4.3.0", |
|
||||
"hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Linq.Queryable/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==", |
|
||||
"path": "system.linq.queryable/4.3.0", |
|
||||
"hashPath": "system.linq.queryable.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.ObjectModel/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", |
|
||||
"path": "system.objectmodel/4.3.0", |
|
||||
"hashPath": "system.objectmodel.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", |
|
||||
"path": "system.reflection/4.3.0", |
|
||||
"hashPath": "system.reflection.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Emit/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", |
|
||||
"path": "system.reflection.emit/4.3.0", |
|
||||
"hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Emit.ILGeneration/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", |
|
||||
"path": "system.reflection.emit.ilgeneration/4.3.0", |
|
||||
"hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Emit.Lightweight/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", |
|
||||
"path": "system.reflection.emit.lightweight/4.3.0", |
|
||||
"hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Extensions/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", |
|
||||
"path": "system.reflection.extensions/4.3.0", |
|
||||
"hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.Primitives/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", |
|
||||
"path": "system.reflection.primitives/4.3.0", |
|
||||
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Reflection.TypeExtensions/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", |
|
||||
"path": "system.reflection.typeextensions/4.3.0", |
|
||||
"hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Resources.ResourceManager/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", |
|
||||
"path": "system.resources.resourcemanager/4.3.0", |
|
||||
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Runtime/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", |
|
||||
"path": "system.runtime/4.3.0", |
|
||||
"hashPath": "system.runtime.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Runtime.Extensions/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", |
|
||||
"path": "system.runtime.extensions/4.3.0", |
|
||||
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Runtime.Loader/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", |
|
||||
"path": "system.runtime.loader/4.3.0", |
|
||||
"hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Text.Encoding/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", |
|
||||
"path": "system.text.encoding/4.3.0", |
|
||||
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Threading/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", |
|
||||
"path": "system.threading/4.3.0", |
|
||||
"hashPath": "system.threading.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"System.Threading.Tasks/4.3.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", |
|
||||
"path": "system.threading.tasks/4.3.0", |
|
||||
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" |
|
||||
}, |
|
||||
"Volo.Abp.Core/4.0.0": { |
|
||||
"type": "package", |
|
||||
"serviceable": true, |
|
||||
"sha512": "sha512-ZMfrx0XAQB8hkQDr7yK7z+p9m48VmKxpEH0/B2k8QNK9/D+2CGa4pBJtwJfQocgm2lltI25NapgcIr5GG8bQJA==", |
|
||||
"path": "volo.abp.core/4.0.0", |
|
||||
"hashPath": "volo.abp.core.4.0.0.nupkg.sha512" |
|
||||
} |
|
||||
} |
|
||||
} |
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@ |
|||||
45e6072ab5eb696ef5d62c419debca5b1894b3a0 |
|
@ -1,72 +0,0 @@ |
|||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\refint\Win.Abp.Snowflakes.dll |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\refint\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\长春项目\结算代码\pg\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\refint\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\长春项目\北京北汽结算项目\ABP4BJSettleAccount\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\refint\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\refint\Win.Abp.Snowflakes.dll |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Debug\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +0,0 @@ |
|||||
// <autogenerated />
|
|
||||
using System; |
|
||||
using System.Reflection; |
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = ".NET 5.0")] |
|
@ -1,20 +0,0 @@ |
|||||
//------------------------------------------------------------------------------
|
|
||||
// <auto-generated>
|
|
||||
// 此代码由工具生成。
|
|
||||
// 运行时版本:4.0.30319.42000
|
|
||||
//
|
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果
|
|
||||
// 重新生成代码,这些更改将会丢失。
|
|
||||
// </auto-generated>
|
|
||||
//------------------------------------------------------------------------------
|
|
||||
|
|
||||
using System; |
|
||||
using System.Reflection; |
|
||||
|
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] |
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] |
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Win.Abp.Snowflakes")] |
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] |
|
||||
|
|
||||
// 由 MSBuild WriteCodeFragment 类生成。
|
|
||||
|
|
@ -1 +0,0 @@ |
|||||
dd45d7419542ed747e383f3acb2b9bf5ef266736 |
|
@ -1,15 +0,0 @@ |
|||||
is_global = true |
|
||||
build_property.TargetFramework = netcoreapp5 |
|
||||
build_property.TargetPlatformMinVersion = |
|
||||
build_property.UsingMicrosoftNETSdkWeb = |
|
||||
build_property.ProjectTypeGuids = |
|
||||
build_property.InvariantGlobalization = |
|
||||
build_property.PlatformNeutralAssembly = |
|
||||
build_property.EnforceExtendedAnalyzerRules = |
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows |
|
||||
build_property.RootNamespace = |
|
||||
<<<<<<< HEAD |
|
||||
build_property.ProjectDir = D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\ |
|
||||
======= |
|
||||
build_property.ProjectDir = D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\ |
|
||||
>>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 |
|
Binary file not shown.
Binary file not shown.
@ -1,5 +0,0 @@ |
|||||
<<<<<<< HEAD |
|
||||
490ed7a03a4d14bd9778d0cf635e6ea08e460be1 |
|
||||
======= |
|
||||
dabb1a5d47fc58eca331ebf17c1e39cf211ca0c0 |
|
||||
>>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 |
|
@ -1,51 +0,0 @@ |
|||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
G:\TIANHE\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
C:\Users\Administrator\Source\Repos\Win.Sfs.SmartSettlementSystem.PG\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
<<<<<<< HEAD |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\refint\Win.Abp.Snowflakes.dll |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\长春项目\北京北汽结算项目\NewBJSettleAccount\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
======= |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.deps.json |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\bin\Release\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.AssemblyReference.cache |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.GeneratedMSBuildEditorConfig.editorconfig |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfoInputs.cache |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.AssemblyInfo.cs |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.csproj.CoreCompileInputs.cache |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.dll |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\refint\Win.Abp.Snowflakes.dll |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\Win.Abp.Snowflakes.pdb |
|
||||
D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Abp.Snowflakes\obj\Release\netcoreapp5\ref\Win.Abp.Snowflakes.dll |
|
||||
>>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 |
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,71 +1,64 @@ |
|||||
{ |
{ |
||||
"version": 2, |
"version": 2, |
||||
<<<<<<< HEAD |
"dgSpecHash": "Ub4JQ58b10+xiFEHhFzG6d6yEoGhQ90WlHa0QLExy5UwBYfOAou1jOGc006kixczlWN+OUEoirHCniYH+f7bpQ==", |
||||
"dgSpecHash": "nH1pRrQe3k1fNoF9X1jN0LTmtNwHI243FAtfoHxtwvv4NwVPUgW1N4eVt9Rh3jt7mxkxf8r8b0SCtQuENreyPg==", |
|
||||
======= |
|
||||
"dgSpecHash": "CugfBKjayiD+GhmotTe3At90iFNx0Pi6XhbVBO993irp5Dtb+LKaC/9V7bidoTRT9vBbQnaftq7cMvEHm+sOcQ==", |
|
||||
>>>>>>> 1c2946500765850db29fa7d216f5e55e2e4de888 |
|
||||
"success": true, |
"success": true, |
||||
"projectFilePath": "D:\\CODE\\BeiJinSettleAccount\\code\\src\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj", |
"projectFilePath": "E:\\我的工作\\B_BJBQJS\\BJBQJS\\code\\src\\Shared\\Win.Abp.Snowflakes\\Win.Abp.Snowflakes.csproj", |
||||
"expectedPackageFiles": [ |
"expectedPackageFiles": [ |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\jetbrains.annotations\\2020.1.0\\jetbrains.annotations.2020.1.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\jetbrains.annotations\\2020.1.0\\jetbrains.annotations.2020.1.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration\\5.0.0\\microsoft.extensions.configuration.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.configuration\\5.0.0\\microsoft.extensions.configuration.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.binder\\5.0.0\\microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.configuration.binder\\5.0.0\\microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\5.0.0\\microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.configuration.commandline\\5.0.0\\microsoft.extensions.configuration.commandline.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\5.0.0\\microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.configuration.environmentvariables\\5.0.0\\microsoft.extensions.configuration.environmentvariables.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\5.0.0\\microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.configuration.fileextensions\\5.0.0\\microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.json\\5.0.0\\microsoft.extensions.configuration.json.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.configuration.json\\5.0.0\\microsoft.extensions.configuration.json.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\5.0.0\\microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.configuration.usersecrets\\5.0.0\\microsoft.extensions.configuration.usersecrets.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\5.0.0\\microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.fileproviders.abstractions\\5.0.0\\microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\5.0.0\\microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.fileproviders.physical\\5.0.0\\microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\5.0.0\\microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.hosting.abstractions\\5.0.0\\microsoft.extensions.hosting.abstractions.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.localization\\5.0.0\\microsoft.extensions.localization.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.localization\\5.0.0\\microsoft.extensions.localization.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\5.0.0\\microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.localization.abstractions\\5.0.0\\microsoft.extensions.localization.abstractions.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\5.0.0\\microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.options.configurationextensions\\5.0.0\\microsoft.extensions.options.configurationextensions.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\nito.asyncex.context\\5.0.0\\nito.asyncex.context.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\nito.asyncex.coordination\\5.0.0\\nito.asyncex.coordination.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\nito.asyncex.tasks\\5.0.0\\nito.asyncex.tasks.5.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\nito.collections.deque\\1.0.4\\nito.collections.deque.1.0.4.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\nito.disposables\\2.0.0\\nito.disposables.2.0.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq.dynamic.core\\1.1.5\\system.linq.dynamic.core.1.1.5.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.linq.dynamic.core\\1.1.5\\system.linq.dynamic.core.1.1.5.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.linq.queryable\\4.3.0\\system.linq.queryable.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.runtime.loader\\4.3.0\\system.runtime.loader.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\volo.abp.core\\4.0.0\\volo.abp.core.4.0.0.nupkg.sha512", |
"D:\\ProgramData\\NuGet\\packages\\volo.abp.core\\4.0.0\\volo.abp.core.4.0.0.nupkg.sha512" |
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512", |
|
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512", |
|
||||
"C:\\Users\\AIJXZ\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\5.0.0\\microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512" |
|
||||
], |
], |
||||
"logs": [] |
"logs": [] |
||||
} |
} |
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,23 +0,0 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> |
|
||||
<metadata> |
|
||||
<id>Win.Sfs.Shared</id> |
|
||||
<version>2.0.0</version> |
|
||||
<authors>Win.Sfs.Shared</authors> |
|
||||
<description>Package Description</description> |
|
||||
<dependencies> |
|
||||
<group targetFramework="net5.0"> |
|
||||
<dependency id="Win.Utils" version="2.0.0" exclude="Build,Analyzers" /> |
|
||||
<dependency id="Microsoft.AspNetCore.Mvc" version="2.2.0" exclude="Build,Analyzers" /> |
|
||||
<dependency id="Volo.Abp.Caching" version="4.0.0" exclude="Build,Analyzers" /> |
|
||||
<dependency id="Volo.Abp.Ddd.Application" version="4.0.0" exclude="Build,Analyzers" /> |
|
||||
<dependency id="Volo.Abp.Ddd.Application.Contracts" version="4.0.0" exclude="Build,Analyzers" /> |
|
||||
<dependency id="Volo.Abp.Ddd.Domain" version="4.0.0" exclude="Build,Analyzers" /> |
|
||||
<dependency id="Volo.Abp.EntityFrameworkCore" version="4.0.0" exclude="Build,Analyzers" /> |
|
||||
</group> |
|
||||
</dependencies> |
|
||||
</metadata> |
|
||||
<files> |
|
||||
<file src="D:\CODE\BeiJinSettleAccount\code\src\Shared\Win.Sfs.Shared\bin\Debug\netcoreapp5\Win.Sfs.Shared.dll" target="lib\net5.0\Win.Sfs.Shared.dll" /> |
|
||||
</files> |
|
||||
</package> |
|
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue