mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 10:34:30 +08:00
- 将LogAttribute中的Category属性重命名为Name - 更新构造函数参数名称从category到name - 添加类和方法的XML文档注释 - 将生成的日志字段类型从ILog改为ILogger - 更新日志创建方式从Log.CreateLogger到ConsoleLoggerFactory.GetLogger - 移除项目中的空文件夹引用 - 优化代码结构和注释格式
13 lines
410 B
XML
13 lines
410 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<PackageId>GeWuYou.GFramework.Game</PackageId>
|
|
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GFramework.Core\GFramework.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|