优化星尘工厂启动速度,获取本地进程名比较慢,平均200ms,有时候超过500ms
大石头 authored at 2022-08-25 19:31:39
216.00 B
Stardust
using Stardust.Models;
using Xunit;

namespace ClientTest;

public class AgentInfoTests
{
    [Fact]
    public void Test1()
    {
        var inf = AgentInfo.GetLocal(true);

        Assert.NotNull(inf);
    }
}