在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → NET6 API 框架实例

NET6 API 框架实例

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:158.68M
  • 下载次数:20
  • 浏览次数:128
  • 发布时间:2023-11-21
  • 实例类别:C#语言基础
  • 发 布 人:Wccgg
  • 文件格式:.rar
  • 所需积分:2
 相关标签: API NET ET AP 框架

实例介绍

【实例简介】NET6 API 框架实例

【实例截图】

from clipboard

【核心代码】

.
├── 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


标签: API NET ET AP 框架

实例下载地址

NET6 API 框架实例

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警