mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 19:03:29 +08:00
- 添加了 GFramework.Core.Abstractions.logging 的 using 语句到 AbstractLogger.cs - 添加了 System 的 using 语句到 ILogger.cs - 移除了 GFramework.Core.Abstractions.csproj 中无效的 TargetFramework 空标签 - 解决了日志模块的依赖引用问题
19 lines
628 B
XML
19 lines
628 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<!--
|
||
配置项目构建属性
|
||
设置项目不可打包、生成文档文件,并包含特定的Polyfill
|
||
-->
|
||
<PropertyGroup>
|
||
<IsPackable>false</IsPackable>
|
||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||
<MeziantouPolyfill_IncludedPolyfills>T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute</MeziantouPolyfill_IncludedPolyfills>
|
||
<Nullable>enable</Nullable>
|
||
</PropertyGroup>
|
||
|
||
<!-- 引入必要的命名空间 -->
|
||
<ItemGroup>
|
||
<Using Include="GFramework.Core.Abstractions"/>
|
||
</ItemGroup>
|
||
</Project>
|