更改项目目录

This commit is contained in:
橙子
2023-01-24 21:02:39 +08:00
parent ec440f13b1
commit 80723496d0
21 changed files with 231 additions and 28 deletions

View File

@@ -4,14 +4,14 @@
<name>Yi.BBS.Application.Contracts</name>
</assembly>
<members>
<member name="T:Yi.BBS.Application.Contracts.School.Dtos.StudentCreateInputVo">
<member name="T:Yi.BBS.Application.Contracts.Forum.Dtos.PlateCreateInputVo">
<summary>
Student输入创建对象
Plate输入创建对象
</summary>
</member>
<member name="T:Yi.BBS.Application.Contracts.School.IStudentService">
<member name="T:Yi.BBS.Application.Contracts.Forum.IPlateService">
<summary>
Student
Plate<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
</summary>
</member>
</members>

View File

@@ -4,9 +4,9 @@
<name>Yi.BBS.Application</name>
</assembly>
<members>
<member name="T:Yi.BBS.Application.School.StudentService">
<member name="T:Yi.BBS.Application.Forum.PlateService">
<summary>
Student服务实现
Plate服务实现
</summary>
</member>
</members>

View File

@@ -5,13 +5,10 @@ using Yi.Framework.Core.Extensions;
using Yi.BBS.Web;
var builder = WebApplication.CreateBuilder(args);
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>url
builder.WebHost.UseStartUrlsServer(builder.Configuration);
//<2F><><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3>
builder.UseYiModules(typeof(YiBBSWebModule));
//<2F><><EFBFBD><EFBFBD>autofacģ<63><C4A3>,<2C><>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3>
builder.Host.ConfigureAutoFacContainer(container =>
{
container.RegisterYiModule(AutoFacModuleEnum.PropertiesAutowiredModule, typeof(YiBBSWebModule).Assembly);
@@ -19,7 +16,6 @@ builder.Host.ConfigureAutoFacContainer(container =>
var app = builder.Build();
//ȫ<>ִ<EFBFBD><D6B4><EFBFBD><EFBFBD>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
app.UseErrorHandlingServer();
app.UseAuthentication();

View File

@@ -6,7 +6,7 @@
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:19002",
"applicationUrl": "http://localhost:19003",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}

View File

@@ -8,7 +8,7 @@
"AllowedHosts": "*",
//程序启动地址,*代表全部网口
"StartUrl": "http://*:19002",
"StartUrl": "http://*:19003",
//数据库类型列表
"DbList": [ "Sqlite", "Mysql", "Sqlserver", "Oracle" ],