29 changed files with 943 additions and 4 deletions
@ -0,0 +1,95 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Text; |
||||||
|
using System.Threading.Tasks; |
||||||
|
|
||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class AjgldsrxxDto |
||||||
|
{ |
||||||
|
|
||||||
|
public int endRow { get; set; } |
||||||
|
public int firstPage { get; set; } |
||||||
|
public bool hasNextPage { get; set; } |
||||||
|
public bool isFirstPage { get; set; } |
||||||
|
public bool isLastPage { get; set; } |
||||||
|
public int lastPage { get; set; } |
||||||
|
|
||||||
|
public List<AjglBaseDto> list { 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 AjglBaseDto |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 部门受案号 |
||||||
|
/// </summary> |
||||||
|
public string bmsah { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 国籍代码 |
||||||
|
/// </summary> |
||||||
|
public string gjdm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 国籍名称 |
||||||
|
/// </summary> |
||||||
|
public string gjmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 民族代码 |
||||||
|
/// </summary> |
||||||
|
public string mzdm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 民族名称 |
||||||
|
/// </summary> |
||||||
|
public string mzmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 性别代码 |
||||||
|
/// </summary> |
||||||
|
public string xbdm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// / 性别 |
||||||
|
/// </summary> |
||||||
|
public string xbmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 姓名 |
||||||
|
/// </summary> |
||||||
|
public string xm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 证件号码 |
||||||
|
/// </summary> |
||||||
|
public string zjhm { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 证件类型代码 |
||||||
|
/// </summary> |
||||||
|
public string zjlxdm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 证件类型 |
||||||
|
/// </summary> |
||||||
|
public string zjlxmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// |
||||||
|
/// </summary> |
||||||
|
public string zrrbm { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 当事人类型代码 |
||||||
|
/// </summary> |
||||||
|
public string zrrlxdm { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 当事人类型 |
||||||
|
/// </summary> |
||||||
|
public string zrrlxmc { get; set; } |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Text; |
||||||
|
using System.Threading.Tasks; |
||||||
|
|
||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
internal class Class1 |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,9 @@ |
|||||||
|
<Project Sdk="Microsoft.NET.Sdk"> |
||||||
|
|
||||||
|
<PropertyGroup> |
||||||
|
<TargetFramework>net6.0</TargetFramework> |
||||||
|
<ImplicitUsings>enable</ImplicitUsings> |
||||||
|
<Nullable>enable</Nullable> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
</Project> |
@ -0,0 +1,50 @@ |
|||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class FileResultDto |
||||||
|
{ |
||||||
|
public string code { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public string message { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public bool? success { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public FileResultBaseDto data { get; set; } |
||||||
|
} |
||||||
|
|
||||||
|
public class FileResultBaseDto |
||||||
|
{ |
||||||
|
|
||||||
|
public string dir { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public string name { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public int size { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public object storageDeleteResult { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public StorageResultDto storageResult { get; set; } |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public class StorageResultDto |
||||||
|
{ |
||||||
|
|
||||||
|
public object length { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public string md5 { get; set; } |
||||||
|
|
||||||
|
public bool success { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,55 @@ |
|||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class FindBhdlGzblDto |
||||||
|
{ |
||||||
|
|
||||||
|
public string ajmc { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 必要参数 |
||||||
|
/// </summary> |
||||||
|
public string bhdlbh { get; set; } |
||||||
|
public string bmsah { get; set; } |
||||||
|
public string cbbmbm { get; set; } |
||||||
|
public string cbbmmc { get; set; } |
||||||
|
public string cbdwbm { get; set; } |
||||||
|
public string cbdwmc { get; set; } |
||||||
|
public string cbjcgbm { get; set; } |
||||||
|
public string cbjcgmc { get; set; } |
||||||
|
public string clqkbm { get; set; } |
||||||
|
public string dsr { get; set; } |
||||||
|
public string sfkcz { get; set; } |
||||||
|
public string sqrbh { get; set; } |
||||||
|
public string sqrq { get; set; } |
||||||
|
public string sqrxm { get; set; } |
||||||
|
public string sxbh { get; set; } |
||||||
|
public string sxlsbh { get; set; } |
||||||
|
public string sxlxdm { get; set; } |
||||||
|
public string sxlxmc { get; set; } |
||||||
|
public int? sxqx { get; set; } |
||||||
|
public int? syrq { get; set; } |
||||||
|
public string zjhm { get; set; } |
||||||
|
public string zt { get; set; } |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public class ResultGzbl |
||||||
|
{ |
||||||
|
|
||||||
|
public bool? success { get; set; } |
||||||
|
|
||||||
|
public string message { get; set; } |
||||||
|
|
||||||
|
public string code { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public GzblDto data { get; set; } |
||||||
|
} |
||||||
|
|
||||||
|
public class GzblDto |
||||||
|
{ |
||||||
|
public int total { get; set; } |
||||||
|
|
||||||
|
public List<FindBhdlGzblDto> coumment { get; set; } |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,71 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Text; |
||||||
|
using System.Threading.Tasks; |
||||||
|
|
||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class RegisterDto |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 部门受案号 |
||||||
|
/// </summary> |
||||||
|
public string Bmsah { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 单位编码 |
||||||
|
/// </summary> |
||||||
|
public string UnitCode { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 单位编码 |
||||||
|
/// </summary> |
||||||
|
public string UnitName { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 当事人身份证 |
||||||
|
/// </summary> |
||||||
|
public string PartyIdCard { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 当事人-委托人 |
||||||
|
/// </summary> |
||||||
|
public int PartyConsignor { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 当事人-委托人关系 |
||||||
|
/// </summary> |
||||||
|
public int PartyPrincipalRelationship { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 申请人-身份证 |
||||||
|
/// </summary> |
||||||
|
|
||||||
|
public string ProposerIdCard { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 申请人类型 |
||||||
|
/// </summary> |
||||||
|
|
||||||
|
public string ProposerType { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 申请人-联系电话 |
||||||
|
/// </summary> |
||||||
|
public string ProposerTel { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 律师事务所统一社会信用代码 |
||||||
|
/// </summary> |
||||||
|
public string ProposerSCC { get; set; } |
||||||
|
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,47 @@ |
|||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class SaveBhdlclxxDto |
||||||
|
{ |
||||||
|
|
||||||
|
public List<BhdlClxxInputDTOList> bhdlClxxInputDTOList { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public string bhdlbh { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public string bmsah { get; set; } |
||||||
|
|
||||||
|
public string cllxdm { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public string cllxmc { get; set; } |
||||||
|
|
||||||
|
public string dwbm { get; set; } |
||||||
|
|
||||||
|
public string dwmc { get; set; } |
||||||
|
|
||||||
|
public string sxbh { get; set; } |
||||||
|
} |
||||||
|
|
||||||
|
public class BhdlClxxInputDTOList |
||||||
|
{ |
||||||
|
public string clbh { get; set; } |
||||||
|
|
||||||
|
public string fwqwjmc { get; set; } |
||||||
|
|
||||||
|
public string md5 { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public string wjkzm { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public string wjlj { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
public string wjmc { get; set; } |
||||||
|
|
||||||
|
public int wjzjs { get; set; } |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,35 @@ |
|||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class UploadDto |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 部门受案号 |
||||||
|
/// </summary> |
||||||
|
public string Bmsah { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// base64字符串 |
||||||
|
/// </summary> |
||||||
|
public string ImageStr { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 1423000000100-律师执业证书,1423000000200-律师事务所证, 1423000000300- 授权委托书, 1423000000400- 法律援助公函,1423000000500-身份证件 ,1423000000600-关系证明材料, 1423000000700- 其他 |
||||||
|
/// </summary> |
||||||
|
public string Code { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 文件名称 |
||||||
|
/// </summary> |
||||||
|
public string FileName { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 单位编码 |
||||||
|
/// </summary> |
||||||
|
public string UnitCode { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 单位名称 |
||||||
|
/// </summary> |
||||||
|
public string UnitName { get; set; } |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,21 @@ |
|||||||
|
namespace Dto |
||||||
|
{ |
||||||
|
public class UploadImageDto |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 0 |
||||||
|
/// </summary> |
||||||
|
public int blzt { get; set; } |
||||||
|
public string dwbm { get; set; } // 410503, |
||||||
|
public string bmsah { get; set; } |
||||||
|
public string ajmc { get; set; } |
||||||
|
public string zrrxm { get; set; } |
||||||
|
public string sqrxm { get; set; } |
||||||
|
public string gjz { get; set; } |
||||||
|
public string sxlxdm { get; set; } |
||||||
|
public object ksrq { get; set; } |
||||||
|
public object jsrq { get; set; } |
||||||
|
public int pageNum { get; set; } |
||||||
|
public int pageSize { get; set; } |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,23 @@ |
|||||||
|
{ |
||||||
|
"runtimeTarget": { |
||||||
|
"name": ".NETCoreApp,Version=v6.0", |
||||||
|
"signature": "" |
||||||
|
}, |
||||||
|
"compilationOptions": {}, |
||||||
|
"targets": { |
||||||
|
".NETCoreApp,Version=v6.0": { |
||||||
|
"Dto/1.0.0": { |
||||||
|
"runtime": { |
||||||
|
"Dto.dll": {} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
"libraries": { |
||||||
|
"Dto/1.0.0": { |
||||||
|
"type": "project", |
||||||
|
"serviceable": false, |
||||||
|
"sha512": "" |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,4 @@ |
|||||||
|
// <autogenerated /> |
||||||
|
using System; |
||||||
|
using System.Reflection; |
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] |
@ -0,0 +1,23 @@ |
|||||||
|
//------------------------------------------------------------------------------ |
||||||
|
// <auto-generated> |
||||||
|
// 此代码由工具生成。 |
||||||
|
// 运行时版本:4.0.30319.42000 |
||||||
|
// |
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果 |
||||||
|
// 重新生成代码,这些更改将会丢失。 |
||||||
|
// </auto-generated> |
||||||
|
//------------------------------------------------------------------------------ |
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Reflection; |
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Dto")] |
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] |
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] |
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] |
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Dto")] |
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Dto")] |
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] |
||||||
|
|
||||||
|
// 由 MSBuild WriteCodeFragment 类生成。 |
||||||
|
|
@ -0,0 +1 @@ |
|||||||
|
24467ac260176f765658abbc64d2580ba42c4bc0 |
@ -0,0 +1,11 @@ |
|||||||
|
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\ |
@ -0,0 +1,8 @@ |
|||||||
|
// <auto-generated/> |
||||||
|
global using global::System; |
||||||
|
global using global::System.Collections.Generic; |
||||||
|
global using global::System.IO; |
||||||
|
global using global::System.Linq; |
||||||
|
global using global::System.Net.Http; |
||||||
|
global using global::System.Threading; |
||||||
|
global using global::System.Threading.Tasks; |
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@ |
|||||||
|
ccca575b8362d1b2377ddd7db4c9085ea077e8d3 |
@ -0,0 +1,64 @@ |
|||||||
|
{ |
||||||
|
"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" |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
<?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> |
@ -0,0 +1,2 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?> |
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" /> |
@ -0,0 +1,69 @@ |
|||||||
|
{ |
||||||
|
"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" |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,8 @@ |
|||||||
|
{ |
||||||
|
"version": 2, |
||||||
|
"dgSpecHash": "aBP4DpXaMgoARxZa7jC+2/OpB8f0apQvutUjpKvCZq5BqhIvN/WzLcvuunyUhHgo503i8NiV6jJvit7a9mkSCQ==", |
||||||
|
"success": true, |
||||||
|
"projectFilePath": "C:\\core\\24Hour.Service\\Dto\\Dto.csproj", |
||||||
|
"expectedPackageFiles": [], |
||||||
|
"logs": [] |
||||||
|
} |
Loading…
Reference in new issue