[feat] 增加安装助手,包括net20/net40版本,用于安装主流dotNet运行时
大石头 authored at 2024-01-21 19:22:47
243.00 B
LuckyClover
using System;

namespace Installer;

public interface ITracer
{
    ISpan NewSpan(String name, Object tag = null);
}

public interface ISpan : IDisposable
{
    void SetTag(Object tag);
    void SetError(Exception ex, Object tag = null);
}