mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 19:03:29 +08:00
- 添加 CommandCoroutineExtensions 的完整测试用例 - 添加 QueryCoroutineExtensions 的完整测试用例 - 添加 WaitForEvent 的完整测试用例 - 添加 WaitForEventWithTimeout 的完整测试用例 - 添加 Moq 依赖包用于模拟测试 - 实现多种协程指令和扩展方法的功能验证 - 包含超时处理、异常处理和事件触发等场景测试 - [release ci]
20 lines
653 B
XML
20 lines
653 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TargetFrameworks>net10.0;net8.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1"/>
|
|
<PackageReference Include="Moq" Version="4.20.72"/>
|
|
<PackageReference Include="NUnit" Version="4.4.0"/>
|
|
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GFramework.Core\GFramework.Core.csproj"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|