[feat] 增加安装助手,包括net20/net40版本,用于安装主流dotNet运行时
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); }