嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
NET6 API 框架实例
.
├── NET6 API 框架实例.rar
└── automatic
├── Automatic
│ ├── Automatic.Api
│ │ ├── Api
│ │ │ ├── Database
│ │ │ │ └── DatabaseAppService.cs
│ │ │ ├── Upload
│ │ │ │ └── UploadAppService.cs
│ │ │ └── User
│ │ │ └── UserAppService.cs
│ │ ├── Automatic.Api.csproj
│ │ ├── Automatic.Api.xml
│ │ ├── Dtos
│ │ │ ├── EditOrInsertUserInfoDto.cs
│ │ │ └── Mapper
│ │ │ └── Mapper.cs
│ │ ├── GlobalUsings.cs
│ │ ├── applicationsettings.json
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Api.deps.json
│ │ │ ├── Automatic.Api.dll
│ │ │ ├── Automatic.Api.pdb
│ │ │ ├── Automatic.Api.xml
│ │ │ ├── Automatic.Application.dll
│ │ │ ├── Automatic.Application.pdb
│ │ │ ├── Automatic.Application.xml
│ │ │ ├── Automatic.Core.dll
│ │ │ ├── Automatic.Core.pdb
│ │ │ ├── Automatic.Core.xml
│ │ │ ├── Automatic.Infrastructure.dll
│ │ │ ├── Automatic.Infrastructure.pdb
│ │ │ └── applicationsettings.json
│ │ └── obj
│ │ ├── Automatic.Api.csproj.nuget.dgspec.json
│ │ ├── Automatic.Api.csproj.nuget.g.props
│ │ ├── Automatic.Api.csproj.nuget.g.targets
│ │ ├── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Api.AssemblyInfo.cs
│ │ │ ├── Automatic.Api.AssemblyInfoInputs.cache
│ │ │ ├── Automatic.Api.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── Automatic.Api.GlobalUsings.g.cs
│ │ │ ├── Automatic.Api.assets.cache
│ │ │ ├── Automatic.Api.csproj.AssemblyReference.cache
│ │ │ ├── Automatic.Api.csproj.BuildWithSkipAnalyzers
│ │ │ ├── Automatic.Api.csproj.CopyComplete
│ │ │ ├── Automatic.Api.csproj.CoreCompileInputs.cache
│ │ │ ├── Automatic.Api.csproj.FileListAbsolute.txt
│ │ │ ├── Automatic.Api.dll
│ │ │ ├── Automatic.Api.pdb
│ │ │ ├── ref
│ │ │ │ └── Automatic.Api.dll
│ │ │ └── refint
│ │ │ └── Automatic.Api.dll
│ │ ├── project.assets.json
│ │ └── project.nuget.cache
│ ├── Automatic.Application
│ │ ├── Automatic.Application.csproj
│ │ ├── Automatic.Application.xml
│ │ ├── DatabaseService.cs
│ │ ├── Interface
│ │ │ ├── IDatabaseService.cs
│ │ │ └── IUserService.cs
│ │ ├── UserService.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Application.deps.json
│ │ │ ├── Automatic.Application.dll
│ │ │ ├── Automatic.Application.pdb
│ │ │ ├── Automatic.Application.xml
│ │ │ ├── Automatic.Core.dll
│ │ │ ├── Automatic.Core.pdb
│ │ │ └── Automatic.Core.xml
│ │ └── obj
│ │ ├── Automatic.Application.csproj.nuget.dgspec.json
│ │ ├── Automatic.Application.csproj.nuget.g.props
│ │ ├── Automatic.Application.csproj.nuget.g.targets
│ │ ├── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Application.AssemblyInfo.cs
│ │ │ ├── Automatic.Application.AssemblyInfoInputs.cache
│ │ │ ├── Automatic.Application.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── Automatic.Application.GlobalUsings.g.cs
│ │ │ ├── Automatic.Application.assets.cache
│ │ │ ├── Automatic.Application.csproj.AssemblyReference.cache
│ │ │ ├── Automatic.Application.csproj.BuildWithSkipAnalyzers
│ │ │ ├── Automatic.Application.csproj.CopyComplete
│ │ │ ├── Automatic.Application.csproj.CoreCompileInputs.cache
│ │ │ ├── Automatic.Application.csproj.FileListAbsolute.txt
│ │ │ ├── Automatic.Application.dll
│ │ │ ├── Automatic.Application.pdb
│ │ │ ├── ref
│ │ │ │ └── Automatic.Application.dll
│ │ │ └── refint
│ │ │ └── Automatic.Application.dll
│ │ ├── project.assets.json
│ │ └── project.nuget.cache
│ ├── Automatic.Core
│ │ ├── Automatic.Core.csproj
│ │ ├── Automatic.Core.xml
│ │ ├── Dto
│ │ │ ├── DbColumnInfoDto.cs
│ │ │ └── TableDto.cs
│ │ ├── Entities
│ │ │ └── USERINFO.cs
│ │ ├── PrivateCommonEntity.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Core.deps.json
│ │ │ ├── Automatic.Core.dll
│ │ │ ├── Automatic.Core.pdb
│ │ │ ├── Automatic.Core.runtimeconfig.json
│ │ │ └── Automatic.Core.xml
│ │ └── obj
│ │ ├── Automatic.Core.csproj.nuget.dgspec.json
│ │ ├── Automatic.Core.csproj.nuget.g.props
│ │ ├── Automatic.Core.csproj.nuget.g.targets
│ │ ├── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Core.AssemblyInfo.cs
│ │ │ ├── Automatic.Core.AssemblyInfoInputs.cache
│ │ │ ├── Automatic.Core.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── Automatic.Core.assets.cache
│ │ │ ├── Automatic.Core.csproj.AssemblyReference.cache
│ │ │ ├── Automatic.Core.csproj.BuildWithSkipAnalyzers
│ │ │ ├── Automatic.Core.csproj.CoreCompileInputs.cache
│ │ │ ├── Automatic.Core.csproj.FileListAbsolute.txt
│ │ │ ├── Automatic.Core.dll
│ │ │ ├── Automatic.Core.genruntimeconfig.cache
│ │ │ ├── Automatic.Core.pdb
│ │ │ ├── ref
│ │ │ │ └── Automatic.Core.dll
│ │ │ └── refint
│ │ │ └── Automatic.Core.dll
│ │ ├── project.assets.json
│ │ └── project.nuget.cache
│ ├── Automatic.Infrastructure
│ │ ├── Automatic.Infrastructure.csproj
│ │ ├── CommonUtils
│ │ │ ├── AsposePdfClass.cs
│ │ │ ├── EPPlusHelper.cs
│ │ │ ├── EmailHelper.cs
│ │ │ ├── ExcelHelper.cs
│ │ │ └── RedisHelper.cs
│ │ ├── JwtHandler.cs
│ │ ├── Model
│ │ │ ├── EmailOption.cs
│ │ │ └── RedisOption.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Core.dll
│ │ │ ├── Automatic.Core.pdb
│ │ │ ├── Automatic.Core.xml
│ │ │ ├── Automatic.Infrastructure.deps.json
│ │ │ ├── Automatic.Infrastructure.dll
│ │ │ └── Automatic.Infrastructure.pdb
│ │ └── obj
│ │ ├── Automatic.Infrastructure.csproj.nuget.dgspec.json
│ │ ├── Automatic.Infrastructure.csproj.nuget.g.props
│ │ ├── Automatic.Infrastructure.csproj.nuget.g.targets
│ │ ├── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Infrastructure.AssemblyInfo.cs
│ │ │ ├── Automatic.Infrastructure.AssemblyInfoInputs.cache
│ │ │ ├── Automatic.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── Automatic.Infrastructure.GlobalUsings.g.cs
│ │ │ ├── Automatic.Infrastructure.assets.cache
│ │ │ ├── Automatic.Infrastructure.csproj.AssemblyReference.cache
│ │ │ ├── Automatic.Infrastructure.csproj.BuildWithSkipAnalyzers
│ │ │ ├── Automatic.Infrastructure.csproj.CopyComplete
│ │ │ ├── Automatic.Infrastructure.csproj.CoreCompileInputs.cache
│ │ │ ├── Automatic.Infrastructure.csproj.FileListAbsolute.txt
│ │ │ ├── Automatic.Infrastructure.dll
│ │ │ ├── Automatic.Infrastructure.pdb
│ │ │ ├── ref
│ │ │ │ └── Automatic.Infrastructure.dll
│ │ │ └── refint
│ │ │ └── Automatic.Infrastructure.dll
│ │ ├── project.assets.json
│ │ └── project.nuget.cache
│ ├── Automatic.Tasks
│ │ ├── Automatic.Tasks.csproj
│ │ ├── Channel
│ │ │ └── ProcessChannelHandler.cs
│ │ ├── Job
│ │ │ └── JobWorker.cs
│ │ ├── Subscriber
│ │ │ └── ToDoEventSubscriber.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Application.dll
│ │ │ ├── Automatic.Application.pdb
│ │ │ ├── Automatic.Application.xml
│ │ │ ├── Automatic.Core.dll
│ │ │ ├── Automatic.Core.pdb
│ │ │ ├── Automatic.Core.xml
│ │ │ ├── Automatic.Infrastructure.dll
│ │ │ ├── Automatic.Infrastructure.pdb
│ │ │ ├── Automatic.Tasks.deps.json
│ │ │ ├── Automatic.Tasks.dll
│ │ │ └── Automatic.Tasks.pdb
│ │ └── obj
│ │ ├── Automatic.Tasks.csproj.nuget.dgspec.json
│ │ ├── Automatic.Tasks.csproj.nuget.g.props
│ │ ├── Automatic.Tasks.csproj.nuget.g.targets
│ │ ├── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Tasks.AssemblyInfo.cs
│ │ │ ├── Automatic.Tasks.AssemblyInfoInputs.cache
│ │ │ ├── Automatic.Tasks.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── Automatic.Tasks.GlobalUsings.g.cs
│ │ │ ├── Automatic.Tasks.assets.cache
│ │ │ ├── Automatic.Tasks.csproj.AssemblyReference.cache
│ │ │ ├── Automatic.Tasks.csproj.BuildWithSkipAnalyzers
│ │ │ ├── Automatic.Tasks.csproj.CopyComplete
│ │ │ ├── Automatic.Tasks.csproj.CoreCompileInputs.cache
│ │ │ ├── Automatic.Tasks.csproj.FileListAbsolute.txt
│ │ │ ├── Automatic.Tasks.dll
│ │ │ ├── Automatic.Tasks.pdb
│ │ │ ├── ref
│ │ │ │ └── Automatic.Tasks.dll
│ │ │ └── refint
│ │ │ └── Automatic.Tasks.dll
│ │ ├── project.assets.json
│ │ └── project.nuget.cache
│ └── Automatic.Web.Entry
│ ├── Automatic.Web.Entry.csproj
│ ├── Automatic.Web.Entry.csproj.user
│ ├── Log
│ │ └── 20230829
│ │ └── application
│ │ ├── 20230829-Error.log
│ │ ├── 20230829-Information.log
│ │ └── 20230829-Warning.log
│ ├── Program.cs
│ ├── Properties
│ │ └── launchSettings.json
│ ├── SingleFilePublish.cs
│ ├── Startup.cs
│ ├── appsettings.Development.json
│ ├── appsettings.json
│ ├── bin
│ │ └── Debug
│ │ └── net6.0
│ │ ├── Aspose.PDF.dll
│ │ ├── Aspose.Words.Pdf2Word.dll
│ │ ├── Aspose.Words.dll
│ │ ├── Automatic.Api.dll
│ │ ├── Automatic.Api.pdb
│ │ ├── Automatic.Api.xml
│ │ ├── Automatic.Application.dll
│ │ ├── Automatic.Application.pdb
│ │ ├── Automatic.Application.xml
│ │ ├── Automatic.Core.dll
│ │ ├── Automatic.Core.pdb
│ │ ├── Automatic.Core.xml
│ │ ├── Automatic.Infrastructure.dll
│ │ ├── Automatic.Infrastructure.pdb
│ │ ├── Automatic.Tasks.dll
│ │ ├── Automatic.Tasks.pdb
│ │ ├── Automatic.Web.Entry.deps.json
│ │ ├── Automatic.Web.Entry.dll
│ │ ├── Automatic.Web.Entry.exe
│ │ ├── Automatic.Web.Entry.pdb
│ │ ├── Automatic.Web.Entry.runtimeconfig.json
│ │ ├── Ben.Demystifier.dll
│ │ ├── BouncyCastle.Crypto.dll
│ │ ├── Dapper.Contrib.dll
│ │ ├── Dapper.dll
│ │ ├── DmProvider.dll
│ │ ├── EPPlus.Interfaces.dll
│ │ ├── EPPlus.System.Drawing.dll
│ │ ├── EPPlus.dll
│ │ ├── FluentEmail.Core.dll
│ │ ├── FluentEmail.Razor.dll
│ │ ├── FluentEmail.SendGrid.dll
│ │ ├── FluentEmail.Smtp.dll
│ │ ├── FluentValidation.AspNetCore.dll
│ │ ├── FluentValidation.DependencyInjectionExtensions.dll
│ │ ├── FluentValidation.dll
│ │ ├── FreeSql.All.dll
│ │ ├── FreeSql.DbContext.dll
│ │ ├── FreeSql.Provider.Dameng.dll
│ │ ├── FreeSql.Provider.MsAccess.dll
│ │ ├── FreeSql.Provider.MySql.dll
│ │ ├── FreeSql.Provider.Odbc.dll
│ │ ├── FreeSql.Provider.Oracle.dll
│ │ ├── FreeSql.Provider.PostgreSQL.dll
│ │ ├── FreeSql.Provider.SqlServer.dll
│ │ ├── FreeSql.Provider.Sqlite.dll
│ │ ├── FreeSql.Repository.dll
│ │ ├── FreeSql.dll
│ │ ├── Furion.Extras.Authentication.JwtBearer.dll
│ │ ├── Furion.Extras.DatabaseAccessor.Dapper.dll
│ │ ├── Furion.Extras.DatabaseAccessor.FreeSqlEx.dll
│ │ ├── Furion.Extras.DependencyModel.CodeAnalysis.dll
│ │ ├── Furion.Extras.ObjectMapper.Mapster.dll
│ │ ├── Furion.dll
│ │ ├── Google.Protobuf.dll
│ │ ├── ICSharpCode.SharpZipLib.dll
│ │ ├── IGeekFan.AspNetCore.Knife4jUI.dll
│ │ ├── K4os.Compression.LZ4.Streams.dll
│ │ ├── K4os.Compression.LZ4.dll
│ │ ├── K4os.Hash.xxHash.dll
│ │ ├── Mapster.Core.dll
│ │ ├── Mapster.DependencyInjection.dll
│ │ ├── Mapster.dll
│ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll
│ │ ├── Microsoft.AspNetCore.Mvc.Razor.Extensions.dll
│ │ ├── Microsoft.AspNetCore.Razor.Language.dll
│ │ ├── Microsoft.CodeAnalysis.CSharp.dll
│ │ ├── Microsoft.CodeAnalysis.Razor.dll
│ │ ├── Microsoft.CodeAnalysis.dll
│ │ ├── Microsoft.Data.SqlClient.dll
│ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll
│ │ ├── Microsoft.EntityFrameworkCore.Relational.dll
│ │ ├── Microsoft.EntityFrameworkCore.dll
│ │ ├── Microsoft.Extensions.Caching.Memory.dll
│ │ ├── Microsoft.Extensions.DependencyModel.dll
│ │ ├── Microsoft.IO.RecyclableMemoryStream.dll
│ │ ├── Microsoft.Identity.Client.dll
│ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll
│ │ ├── Microsoft.IdentityModel.Logging.dll
│ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
│ │ ├── Microsoft.IdentityModel.Protocols.dll
│ │ ├── Microsoft.IdentityModel.Tokens.dll
│ │ ├── Microsoft.OpenApi.dll
│ │ ├── Microsoft.Win32.SystemEvents.dll
│ │ ├── MiniProfiler.AspNetCore.Mvc.dll
│ │ ├── MiniProfiler.AspNetCore.dll
│ │ ├── MiniProfiler.Shared.dll
│ │ ├── MySql.Data.dll
│ │ ├── NPOI.OOXML.dll
│ │ ├── NPOI.OpenXml4Net.dll
│ │ ├── NPOI.OpenXmlFormats.dll
│ │ ├── NPOI.dll
│ │ ├── NetTopologySuite.IO.PostGis.dll
│ │ ├── NetTopologySuite.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── Npgsql.LegacyPostgis.dll
│ │ ├── Npgsql.NetTopologySuite.dll
│ │ ├── Npgsql.dll
│ │ ├── Oracle.EntityFrameworkCore.dll
│ │ ├── Oracle.ManagedDataAccess.dll
│ │ ├── Pipelines.Sockets.Unofficial.dll
│ │ ├── RazorLight.dll
│ │ ├── Renci.SshNet.dll
│ │ ├── SendGrid.dll
│ │ ├── SkiaSharp.dll
│ │ ├── SshNet.Security.Cryptography.dll
│ │ ├── StackExchange.Redis.dll
│ │ ├── StarkbankEcdsa.dll
│ │ ├── Swashbuckle.AspNetCore.Swagger.dll
│ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll
│ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll
│ │ ├── System.Configuration.ConfigurationManager.dll
│ │ ├── System.Data.Odbc.dll
│ │ ├── System.Data.OleDb.dll
│ │ ├── System.Data.SQLite.dll
│ │ ├── System.Diagnostics.PerformanceCounter.dll
│ │ ├── System.DirectoryServices.Protocols.dll
│ │ ├── System.DirectoryServices.dll
│ │ ├── System.Drawing.Common.dll
│ │ ├── System.IdentityModel.Tokens.Jwt.dll
│ │ ├── System.Runtime.Caching.dll
│ │ ├── System.Security.Cryptography.Pkcs.dll
│ │ ├── System.Security.Cryptography.ProtectedData.dll
│ │ ├── System.Security.Permissions.dll
│ │ ├── System.Text.Json.dll
│ │ ├── System.Windows.Extensions.dll
│ │ ├── System.Xml.XPath.XmlDocument.dll
│ │ ├── Ubiety.Dns.Core.dll
│ │ ├── Zstandard.Net.dll
│ │ ├── applicationsettings.json
│ │ ├── appsettings.Development.json
│ │ ├── appsettings.json
│ │ └── runtimes
│ │ ├── freebsd
│ │ │ └── lib
│ │ │ └── netcoreapp2.0
│ │ │ └── System.Data.Odbc.dll
│ │ ├── linux
│ │ │ └── lib
│ │ │ └── netcoreapp2.0
│ │ │ ├── System.Data.Odbc.dll
│ │ │ └── System.DirectoryServices.Protocols.dll
│ │ ├── linux-x64
│ │ │ └── native
│ │ │ └── SQLite.Interop.dll
│ │ ├── osx
│ │ │ ├── lib
│ │ │ │ └── netcoreapp2.0
│ │ │ │ ├── System.Data.Odbc.dll
│ │ │ │ └── System.DirectoryServices.Protocols.dll
│ │ │ └── native
│ │ │ └── libSkiaSharp.dylib
│ │ ├── osx-x64
│ │ │ └── native
│ │ │ └── SQLite.Interop.dll
│ │ ├── unix
│ │ │ └── lib
│ │ │ ├── net6.0
│ │ │ │ └── System.Drawing.Common.dll
│ │ │ └── netcoreapp3.1
│ │ │ └── Microsoft.Data.SqlClient.dll
│ │ ├── win
│ │ │ └── lib
│ │ │ ├── net6.0
│ │ │ │ ├── Microsoft.Win32.SystemEvents.dll
│ │ │ │ ├── System.Diagnostics.PerformanceCounter.dll
│ │ │ │ ├── System.Drawing.Common.dll
│ │ │ │ ├── System.Security.Cryptography.Pkcs.dll
│ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll
│ │ │ │ └── System.Windows.Extensions.dll
│ │ │ ├── netcoreapp2.0
│ │ │ │ ├── System.Data.Odbc.dll
│ │ │ │ ├── System.DirectoryServices.Protocols.dll
│ │ │ │ └── System.DirectoryServices.dll
│ │ │ ├── netcoreapp3.1
│ │ │ │ └── Microsoft.Data.SqlClient.dll
│ │ │ └── netstandard2.0
│ │ │ ├── System.Data.OleDb.dll
│ │ │ └── System.Runtime.Caching.dll
│ │ ├── win-arm
│ │ │ └── native
│ │ │ └── Microsoft.Data.SqlClient.SNI.dll
│ │ ├── win-arm64
│ │ │ └── native
│ │ │ ├── Microsoft.Data.SqlClient.SNI.dll
│ │ │ └── libSkiaSharp.dll
│ │ ├── win-x64
│ │ │ └── native
│ │ │ ├── Microsoft.Data.SqlClient.SNI.dll
│ │ │ ├── SQLite.Interop.dll
│ │ │ └── libSkiaSharp.dll
│ │ └── win-x86
│ │ └── native
│ │ ├── Microsoft.Data.SqlClient.SNI.dll
│ │ ├── SQLite.Interop.dll
│ │ └── libSkiaSharp.dll
│ ├── obj
│ │ ├── Automatic.Web.Entry.csproj.nuget.dgspec.json
│ │ ├── Automatic.Web.Entry.csproj.nuget.g.props
│ │ ├── Automatic.Web.Entry.csproj.nuget.g.targets
│ │ ├── Debug
│ │ │ └── net6.0
│ │ │ ├── Automatic.Web.Entry.AssemblyInfo.cs
│ │ │ ├── Automatic.Web.Entry.AssemblyInfoInputs.cache
│ │ │ ├── Automatic.Web.Entry.GeneratedMSBuildEditorConfig.editorconfig
│ │ │ ├── Automatic.Web.Entry.GlobalUsings.g.cs
│ │ │ ├── Automatic.Web.Entry.MvcApplicationPartsAssemblyInfo.cache
│ │ │ ├── Automatic.Web.Entry.MvcApplicationPartsAssemblyInfo.cs
│ │ │ ├── Automatic.Web.Entry.assets.cache
│ │ │ ├── Automatic.Web.Entry.csproj.AssemblyReference.cache
│ │ │ ├── Automatic.Web.Entry.csproj.BuildWithSkipAnalyzers
│ │ │ ├── Automatic.Web.Entry.csproj.CopyComplete
│ │ │ ├── Automatic.Web.Entry.csproj.CoreCompileInputs.cache
│ │ │ ├── Automatic.Web.Entry.csproj.FileListAbsolute.txt
│ │ │ ├── Automatic.Web.Entry.dll
│ │ │ ├── Automatic.Web.Entry.genruntimeconfig.cache
│ │ │ ├── Automatic.Web.Entry.pdb
│ │ │ ├── apphost.exe
│ │ │ ├── ref
│ │ │ │ └── Automatic.Web.Entry.dll
│ │ │ ├── refint
│ │ │ │ └── Automatic.Web.Entry.dll
│ │ │ ├── staticwebassets
│ │ │ │ ├── msbuild.build.Automatic.Web.Entry.props
│ │ │ │ ├── msbuild.buildMultiTargeting.Automatic.Web.Entry.props
│ │ │ │ └── msbuild.buildTransitive.Automatic.Web.Entry.props
│ │ │ └── staticwebassets.build.json
│ │ ├── project.assets.json
│ │ └── project.nuget.cache
│ ├── sensitive-words.txt
│ ├── uploads
│ │ └── 3910791078d54b54a0cea8d58df2a312.exe
│ └── 说明.txt
└── Automatic.sln
109 directories, 376 files