21 changed files with 974 additions and 479 deletions
@ -0,0 +1,111 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Text; |
||||||
|
using System.Threading.Tasks; |
||||||
|
|
||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class FindAjxxDto |
||||||
|
{ |
||||||
|
public int endRow { get; set; } |
||||||
|
public int firstPage { get; set; } |
||||||
|
public bool hasNextPage { get; set; } |
||||||
|
public bool hasPreviousPage { get; set; } |
||||||
|
public bool isFirstPage { get; set; } |
||||||
|
|
||||||
|
public bool isLastPage { get; set; } |
||||||
|
|
||||||
|
public List<FindAjxxBaseDto> list { get; set; } |
||||||
|
|
||||||
|
public int lastPage { get; set; } |
||||||
|
public int navigateFirstPage { get; set; } |
||||||
|
public int navigateLastPage { get; set; } |
||||||
|
public int navigatePages { get; set; } |
||||||
|
public List<int> navigatepageNums { get; set; } |
||||||
|
|
||||||
|
public int nextPage { get; set; } |
||||||
|
public int pageNum { get; set; } |
||||||
|
public int pageSize { get; set; } |
||||||
|
public int pages { get; set; } |
||||||
|
|
||||||
|
public int prePage { get; set; } |
||||||
|
|
||||||
|
public int size { get; set; } |
||||||
|
|
||||||
|
public int startRow { get; set; } |
||||||
|
|
||||||
|
public int total { get; set; } |
||||||
|
} |
||||||
|
|
||||||
|
public class FindAjxxBaseDto |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 案件类型编码 |
||||||
|
/// </summary> |
||||||
|
public string ajlbbm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 案件类型名称 |
||||||
|
/// </summary> |
||||||
|
public string ajlbmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 案件名称 |
||||||
|
/// </summary> |
||||||
|
public string ajmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 案情摘要 |
||||||
|
/// </summary> |
||||||
|
public string aqzy { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 部门受案号 |
||||||
|
/// </summary> |
||||||
|
public string bmsah { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 承办部门编码 |
||||||
|
/// </summary> |
||||||
|
public string cbbmbm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 承办部门名称 |
||||||
|
/// </summary> |
||||||
|
public string cbbmmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 承办单位编码 |
||||||
|
/// </summary> |
||||||
|
public string cbdwbm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 承办单位名称 |
||||||
|
/// </summary> |
||||||
|
public string cbdwmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 承办检察官 |
||||||
|
/// </summary> |
||||||
|
public string cbjcg { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 承办阶段编码 |
||||||
|
/// </summary> |
||||||
|
public string cbjcgbm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 承办阶段名称 |
||||||
|
/// </summary> |
||||||
|
public string dqjdmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// |
||||||
|
/// </summary> |
||||||
|
public string sfkcz { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 受理日期 |
||||||
|
/// </summary> |
||||||
|
public string slrq { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 移送单位名称 |
||||||
|
/// </summary> |
||||||
|
public string ysdwdm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 移送单位名称 |
||||||
|
/// </summary> |
||||||
|
public string ysdwmc { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,111 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Text; |
||||||
|
using System.Threading.Tasks; |
||||||
|
|
||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class FindSqrxxDto |
||||||
|
{ |
||||||
|
public List<ContentDto> content { get; set; } |
||||||
|
public bool empty { get; set; } |
||||||
|
public bool first { get; set; } |
||||||
|
public bool last { get; set; } |
||||||
|
|
||||||
|
public int number { get; set; } |
||||||
|
public int numberOfElements { get; set; } |
||||||
|
|
||||||
|
public PageableDto pageable { get; set; } |
||||||
|
|
||||||
|
public int size { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public SortDto sort { get; set; } |
||||||
|
|
||||||
|
public int totalPages { get; set; } |
||||||
|
|
||||||
|
public int totalElements { get; set; } |
||||||
|
} |
||||||
|
|
||||||
|
public class ContentDto |
||||||
|
{ |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 创建时间 |
||||||
|
/// </summary> |
||||||
|
public string cjsj { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 等级单位代码 |
||||||
|
/// </summary> |
||||||
|
public string djdwbm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 等级单位代码 |
||||||
|
/// </summary> |
||||||
|
public string djdwmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 居民身份证 |
||||||
|
/// </summary> |
||||||
|
public string jmsfzh { get; set; } |
||||||
|
public object lxdh { get; set; } |
||||||
|
public object lxdz { get; set; } |
||||||
|
public string sfsc { get; set; } |
||||||
|
public string sjbsbh { get; set; } |
||||||
|
public string sjly { get; set; } |
||||||
|
public string sqrbh { get; set; } |
||||||
|
public string sqrlxdm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 申请人类型 |
||||||
|
/// </summary> |
||||||
|
public string sqrlxmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 申请人身份代码 |
||||||
|
/// </summary> |
||||||
|
public string sqrsfdm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 申请人身份 -律师 |
||||||
|
/// </summary> |
||||||
|
public string sqrsfmc { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 申请人姓名 |
||||||
|
/// </summary> |
||||||
|
public string sqrxm { get; set; } |
||||||
|
public string szlssws { get; set; } |
||||||
|
public string tyshxydm { get; set; } |
||||||
|
public object zbls { get; set; } |
||||||
|
public string zhxgsj { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 证件类型号码 |
||||||
|
/// </summary> |
||||||
|
public string zjhm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 证件类型代码 |
||||||
|
/// </summary> |
||||||
|
public string zjlxdm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 证件类型名称 |
||||||
|
/// </summary> |
||||||
|
public string zjlxmc { get; set; } |
||||||
|
public object zyzh { get; set; } |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public class PageableDto |
||||||
|
{ |
||||||
|
public int offset { get; set; } |
||||||
|
public int pageNumber { get; set; } |
||||||
|
public int pageSize { get; set; } |
||||||
|
public bool paged { get; set; } |
||||||
|
public bool unpaged { get; set; } |
||||||
|
|
||||||
|
public SortDto sort { get; set; } |
||||||
|
} |
||||||
|
public class SortDto |
||||||
|
{ |
||||||
|
public bool empty { get; set; } |
||||||
|
public bool sorted { get; set; } |
||||||
|
public bool unsorted { get; set; } |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,211 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Text; |
||||||
|
using System.Threading.Tasks; |
||||||
|
|
||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class SaveBhdlDjxxDto |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 单位编码 |
||||||
|
/// </summary> |
||||||
|
public string ajcbdwbm { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 单位名称 |
||||||
|
/// </summary> |
||||||
|
public string ajcbdwmc { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 案件名称 |
||||||
|
/// </summary> |
||||||
|
public string ajmc { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// |
||||||
|
/// </summary> |
||||||
|
public string bhdlbh { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 部门受案号 |
||||||
|
/// </summary> |
||||||
|
public string bmsah { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 承办检察官 |
||||||
|
/// </summary> |
||||||
|
public string czr { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 承办检察官编码 |
||||||
|
/// </summary> |
||||||
|
public string czrybm { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 单位编码 |
||||||
|
/// </summary> |
||||||
|
public string dwbm { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 法律援助内容 |
||||||
|
/// </summary> |
||||||
|
public string flyznr { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// / |
||||||
|
/// </summary> |
||||||
|
// public string jwgkdjid { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 是否案管登记 Y |
||||||
|
/// </summary> |
||||||
|
public string sfagdj { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 是否法律援助 |
||||||
|
/// </summary> |
||||||
|
public string sfflyz { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 申请人编号 |
||||||
|
/// </summary> |
||||||
|
public string sqrbh { get; set; } |
||||||
|
|
||||||
|
public string wfwgqkdm { get; set; } = null; |
||||||
|
|
||||||
|
public string wfwgqkmc { get; set; } = ""; |
||||||
|
|
||||||
|
public string wfwgqknr { get; set; } = null; |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 委托人 |
||||||
|
/// </summary> |
||||||
|
public string wtr { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 委托人与当事人关系 代码 |
||||||
|
/// </summary> |
||||||
|
|
||||||
|
public string wtrydsrgxdm { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 委托人与当事人关系名称 |
||||||
|
/// </summary> |
||||||
|
public string wtrydsrgxmc { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 值班律师 |
||||||
|
/// </summary> |
||||||
|
public string zbls { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 责任人编码 |
||||||
|
/// </summary> |
||||||
|
public string zrrbm { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public BhdlYxSqrInsertInputDto bhdlYxSqrInsertInputDto { get; set; } |
||||||
|
} |
||||||
|
|
||||||
|
public class BhdlYxSqrInsertInputDto |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 登记单位编码 |
||||||
|
/// </summary> |
||||||
|
public string djdwbm { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 登记单位名称 |
||||||
|
/// </summary> |
||||||
|
public string djdwmc { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 居民身份证号码 |
||||||
|
/// </summary> |
||||||
|
public string jmsfzh { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 联系电话 |
||||||
|
/// </summary> |
||||||
|
public string lxdh { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 联系地址 |
||||||
|
/// </summary> |
||||||
|
public string lxdz { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// |
||||||
|
/// </summary> |
||||||
|
|
||||||
|
public bool sfgxlsk { get; set; } = false; |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 申请人类型d代码 1403187300001 -辩护人 |
||||||
|
/// </summary> |
||||||
|
public string sqrlxdm { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 申请人类型 |
||||||
|
/// </summary> |
||||||
|
public string sqrlxmc { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 身份代码 |
||||||
|
/// </summary> |
||||||
|
public string sqrsfdm { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 身份名称 |
||||||
|
/// </summary> |
||||||
|
public string sqrsfmc { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 姓名 |
||||||
|
/// </summary> |
||||||
|
public string sqrxm { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 所在律师事务所 |
||||||
|
/// </summary> |
||||||
|
|
||||||
|
public string szlssws { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 律师事务所统一社会信用代码 |
||||||
|
/// </summary> |
||||||
|
public string tyshxydm { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 证件号码 |
||||||
|
/// </summary> |
||||||
|
public string zjhm { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 证件类型代码 |
||||||
|
/// </summary> |
||||||
|
public string zjlxdm { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 证件类型 |
||||||
|
/// </summary> |
||||||
|
public string zjlxmc { get; set; } |
||||||
|
} |
||||||
|
} |
@ -1 +0,0 @@ |
|||||||
24467ac260176f765658abbc64d2580ba42c4bc0 |
|
@ -1,11 +0,0 @@ |
|||||||
is_global = true |
|
||||||
build_property.TargetFramework = net6.0 |
|
||||||
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 = Dto |
|
||||||
build_property.ProjectDir = C:\core\24Hour.Service\Dto\ |
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@ |
|||||||
ccca575b8362d1b2377ddd7db4c9085ea077e8d3 |
f9c18559eda95e06ad72c50817c8719331c1dbf8 |
||||||
|
@ -1,64 +0,0 @@ |
|||||||
{ |
|
||||||
"format": 1, |
|
||||||
"restore": { |
|
||||||
"C:\\core\\24Hour.Service\\Dto\\Dto.csproj": {} |
|
||||||
}, |
|
||||||
"projects": { |
|
||||||
"C:\\core\\24Hour.Service\\Dto\\Dto.csproj": { |
|
||||||
"version": "1.0.0", |
|
||||||
"restore": { |
|
||||||
"projectUniqueName": "C:\\core\\24Hour.Service\\Dto\\Dto.csproj", |
|
||||||
"projectName": "Dto", |
|
||||||
"projectPath": "C:\\core\\24Hour.Service\\Dto\\Dto.csproj", |
|
||||||
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", |
|
||||||
"outputPath": "C:\\core\\24Hour.Service\\Dto\\obj\\", |
|
||||||
"projectStyle": "PackageReference", |
|
||||||
"configFilePaths": [ |
|
||||||
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", |
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" |
|
||||||
], |
|
||||||
"originalTargetFrameworks": [ |
|
||||||
"net6.0" |
|
||||||
], |
|
||||||
"sources": { |
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, |
|
||||||
"C:\\游戏文件夹\\Dll": {}, |
|
||||||
"https://api.nuget.org/v3/index.json": {} |
|
||||||
}, |
|
||||||
"frameworks": { |
|
||||||
"net6.0": { |
|
||||||
"targetAlias": "net6.0", |
|
||||||
"projectReferences": {} |
|
||||||
} |
|
||||||
}, |
|
||||||
"warningProperties": { |
|
||||||
"warnAsError": [ |
|
||||||
"NU1605" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
"frameworks": { |
|
||||||
"net6.0": { |
|
||||||
"targetAlias": "net6.0", |
|
||||||
"imports": [ |
|
||||||
"net461", |
|
||||||
"net462", |
|
||||||
"net47", |
|
||||||
"net471", |
|
||||||
"net472", |
|
||||||
"net48", |
|
||||||
"net481" |
|
||||||
], |
|
||||||
"assetTargetFallback": true, |
|
||||||
"warn": true, |
|
||||||
"frameworkReferences": { |
|
||||||
"Microsoft.NETCore.App": { |
|
||||||
"privateAssets": "all" |
|
||||||
} |
|
||||||
}, |
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -1,15 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?> |
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> |
|
||||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> |
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> |
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> |
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> |
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\</NuGetPackageFolders> |
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> |
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.6.0</NuGetToolVersion> |
|
||||||
</PropertyGroup> |
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> |
|
||||||
<SourceRoot Include="C:\Users\Administrator\.nuget\packages\" /> |
|
||||||
</ItemGroup> |
|
||||||
</Project> |
|
@ -1,69 +0,0 @@ |
|||||||
{ |
|
||||||
"version": 3, |
|
||||||
"targets": { |
|
||||||
"net6.0": {} |
|
||||||
}, |
|
||||||
"libraries": {}, |
|
||||||
"projectFileDependencyGroups": { |
|
||||||
"net6.0": [] |
|
||||||
}, |
|
||||||
"packageFolders": { |
|
||||||
"C:\\Users\\Administrator\\.nuget\\packages\\": {} |
|
||||||
}, |
|
||||||
"project": { |
|
||||||
"version": "1.0.0", |
|
||||||
"restore": { |
|
||||||
"projectUniqueName": "C:\\core\\24Hour.Service\\Dto\\Dto.csproj", |
|
||||||
"projectName": "Dto", |
|
||||||
"projectPath": "C:\\core\\24Hour.Service\\Dto\\Dto.csproj", |
|
||||||
"packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", |
|
||||||
"outputPath": "C:\\core\\24Hour.Service\\Dto\\obj\\", |
|
||||||
"projectStyle": "PackageReference", |
|
||||||
"configFilePaths": [ |
|
||||||
"C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", |
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" |
|
||||||
], |
|
||||||
"originalTargetFrameworks": [ |
|
||||||
"net6.0" |
|
||||||
], |
|
||||||
"sources": { |
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, |
|
||||||
"C:\\游戏文件夹\\Dll": {}, |
|
||||||
"https://api.nuget.org/v3/index.json": {} |
|
||||||
}, |
|
||||||
"frameworks": { |
|
||||||
"net6.0": { |
|
||||||
"targetAlias": "net6.0", |
|
||||||
"projectReferences": {} |
|
||||||
} |
|
||||||
}, |
|
||||||
"warningProperties": { |
|
||||||
"warnAsError": [ |
|
||||||
"NU1605" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
"frameworks": { |
|
||||||
"net6.0": { |
|
||||||
"targetAlias": "net6.0", |
|
||||||
"imports": [ |
|
||||||
"net461", |
|
||||||
"net462", |
|
||||||
"net47", |
|
||||||
"net471", |
|
||||||
"net472", |
|
||||||
"net48", |
|
||||||
"net481" |
|
||||||
], |
|
||||||
"assetTargetFallback": true, |
|
||||||
"warn": true, |
|
||||||
"frameworkReferences": { |
|
||||||
"Microsoft.NETCore.App": { |
|
||||||
"privateAssets": "all" |
|
||||||
} |
|
||||||
}, |
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -1,8 +0,0 @@ |
|||||||
{ |
|
||||||
"version": 2, |
|
||||||
"dgSpecHash": "aBP4DpXaMgoARxZa7jC+2/OpB8f0apQvutUjpKvCZq5BqhIvN/WzLcvuunyUhHgo503i8NiV6jJvit7a9mkSCQ==", |
|
||||||
"success": true, |
|
||||||
"projectFilePath": "C:\\core\\24Hour.Service\\Dto\\Dto.csproj", |
|
||||||
"expectedPackageFiles": [], |
|
||||||
"logs": [] |
|
||||||
} |
|
Loading…
Reference in new issue