mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 03:04:29 +08:00
- 定义了IStorage接口提供同步和异步的数据存储操作功能 - 实现了基于文件系统的FileStorage类支持读写删除操作 - 添加了ScopedStorage包装器为存储键提供作用域前缀功能 - 创建了ISerializer接口并实现JsonSerializer使用Newtonsoft.Json - 在项目中引入Newtonsoft.Json包依赖
17 lines
619 B
XML
17 lines
619 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<PackageId>GeWuYou.$(AssemblyName)</PackageId>
|
|
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GFramework.Core\GFramework.Core.csproj"/>
|
|
<ProjectReference Include="..\$(AssemblyName).Abstractions\$(AssemblyName).Abstractions.csproj"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
|
|
</ItemGroup>
|
|
</Project>
|