单一数据源 data/defaults.json,含弹药/编队/火力单元/无人机/探测/天气六类预设 版本追踪: Meta 表 + version 字段,更新时 InsertOrReplace,不删用户数据 名称统一 [Demo] 前缀,UI 中可识别为模拟数据 删除: DefaultAmmunition.cs, DefaultFireUnits.cs, default_ammo.json, default_formations.json, TestAmmo.cs TestPathProvider 自动复制数据文件到测试目录 集成测试精简: 4个简单变体跳过,保留6个核心场景,39s
14 lines
320 B
C#
14 lines
320 B
C#
using SQLite;
|
|
|
|
namespace CounterDrone.Core.Models
|
|
{
|
|
/// <summary>键值对元数据表(版本追踪等)</summary>
|
|
[Table("Meta")]
|
|
internal class MetaEntry
|
|
{
|
|
[PrimaryKey]
|
|
public string Key { get; set; } = string.Empty;
|
|
public string Value { get; set; } = string.Empty;
|
|
}
|
|
}
|