开源项目 Cent 使用教程

开源项目 Cent 使用教程

CentExtensions for Swift Standard Types and Classes项目地址:https://gitcode.com/gh_mirrors/cen/Cent

1. 项目的目录结构及介绍

Cent/
├── README.md
├── LICENSE
├── Cent.sln
├── src/
│   ├── Cent/
│   │   ├── Program.cs
│   │   ├── Startup.cs
│   │   ├── appsettings.json
│   │   ├── Controllers/
│   │   ├── Models/
│   │   ├── Views/
│   │   └── wwwroot/
│   └── Cent.Tests/
└── docs/
  • README.md: 项目介绍和基本说明。
  • LICENSE: 项目许可证。
  • Cent.sln: 解决方案文件。
  • src/Cent/: 项目源代码目录。
    • Program.cs: 应用程序的入口点。
    • Startup.cs: 配置服务和应用程序的请求管道。
    • appsettings.json: 应用程序的配置文件。
    • Controllers/: 包含控制器类。
    • Models/: 包含数据模型类。
    • Views/: 包含视图文件。
    • wwwroot/: 静态文件目录。
  • src/Cent.Tests/: 项目单元测试目录。
  • docs/: 项目文档目录。

2. 项目的启动文件介绍

Program.cs

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;

namespace Cent
{
    public class Program
    {
        public static void Main(string[] args)
        {
            CreateWebHostBuilder(args).Build().Run();
        }

        public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
            WebHost.CreateDefaultBuilder(args)
                .UseStartup<Startup>();
    }
}
  • Main 方法: 应用程序的入口点,负责启动应用程序。
  • CreateWebHostBuilder 方法: 创建并配置 Web 主机。

Startup.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;

namespace Cent
{
    public class Startup
    {
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddControllersWithViews();
        }

        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }

            app.UseRouting();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller=Home}/{action=Index}/{id?}");
            });
        }
    }
}
  • ConfigureServices 方法: 配置应用程序的服务。
  • Configure 方法: 配置应用程序的请求管道。

3. 项目的配置文件介绍

appsettings.json

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  },
  "AllowedHosts": "*"
}
  • Logging: 配置日志级别。
  • AllowedHosts: 配置允许访问的主机。

以上是开源项目 Cent 的基本使用教程,涵盖了项目的目录结构、启动文件和配置文件的介绍。希望对您有所帮助!

CentExtensions for Swift Standard Types and Classes项目地址:https://gitcode.com/gh_mirrors/cen/Cent

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

常韵忆Imagine

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值