Ecng.Reflection
1.0.275
See the version list below for details.
dotnet add package Ecng.Reflection --version 1.0.275
NuGet\Install-Package Ecng.Reflection -Version 1.0.275
<PackageReference Include="Ecng.Reflection" Version="1.0.275" />
<PackageVersion Include="Ecng.Reflection" Version="1.0.275" />
<PackageReference Include="Ecng.Reflection" />
paket add Ecng.Reflection --version 1.0.275
#r "nuget: Ecng.Reflection, 1.0.275"
#:package Ecng.Reflection@1.0.275
#addin nuget:?package=Ecng.Reflection&version=1.0.275
#tool nuget:?package=Ecng.Reflection&version=1.0.275
Ecng.Reflection
A high-performance reflection library providing utilities for type introspection, member discovery, fast attribute retrieval, and dynamic type operations.
Overview
Ecng.Reflection extends .NET's reflection capabilities with performance optimizations through caching, simplified API for common reflection tasks, and utilities for working with types, members, and attributes. It's designed to reduce the complexity and improve the performance of reflection-heavy code.
Key Features
- Fast attribute retrieval with built-in caching
- Simplified member access (properties, fields, methods, constructors)
- Type discovery and metadata exploration
- Assembly scanning for type implementations
- Generic type utilities for working with generic types
- Collection type detection and item type extraction
- Member signature comparison for overload resolution
- Indexer support for types with indexers
- Proxy type mapping for custom type resolution
Installation
Add a reference to the Ecng.Reflection project or NuGet package in your project.
<ItemGroup>
<ProjectReference Include="..\Ecng.Reflection\Reflection.csproj" />
</ItemGroup>
Usage Examples
Working with Attributes
The library provides extension methods for easy attribute retrieval with caching support:
using Ecng.Reflection;
using Ecng.Common;
public class MyClass
{
[Obsolete("Use NewMethod instead")]
public void OldMethod() { }
[DisplayName("User Name")]
public string Name { get; set; }
}
// Get a single attribute
var obsoleteAttr = typeof(MyClass)
.GetMember<MethodInfo>("OldMethod")
.GetAttribute<ObsoleteAttribute>();
Console.WriteLine(obsoleteAttr?.Message); // "Use NewMethod instead"
// Get all attributes
var attrs = typeof(MyClass)
.GetProperty("Name")
.GetAttributes<Attribute>();
// Check if type/member is obsolete
bool isObsolete = typeof(MyClass).GetMethod("OldMethod").IsObsolete();
// Check if type/member is browsable
bool isBrowsable = typeof(MyClass).GetProperty("Name").IsBrowsable();
Getting Members by Name and Type
Retrieve members with simple, chainable syntax:
using Ecng.Reflection;
public class Calculator
{
public int Add(int a, int b) => a + b;
public double Add(double a, double b) => a + b;
public string Name { get; set; }
private int _count;
}
// Get a specific method by parameter types
var addIntMethod = typeof(Calculator)
.GetMember<MethodInfo>("Add", typeof(int), typeof(int));
// Get a property
var nameProperty = typeof(Calculator)
.GetMember<PropertyInfo>("Name");
// Get a field (including private)
var countField = typeof(Calculator)
.GetMember<FieldInfo>("_count", ReflectionHelper.AllInstanceMembers);
// Get constructor with specific parameters
var ctor = typeof(Calculator)
.GetMember<ConstructorInfo>(typeof(string));
Working with Generic Types
Extract generic type information and create generic types:
using Ecng.Reflection;
using Ecng.Common;
// Get the generic type definition from a type hierarchy
var listType = typeof(List<string>).GetGenericType(typeof(IEnumerable<>));
// Returns: IEnumerable<string>
// Get a specific generic argument
var itemType = typeof(List<int>).GetGenericTypeArg(typeof(IEnumerable<>), 0);
// Returns: typeof(int)
// Create a generic type
var genericListDef = typeof(List<>);
var stringListType = genericListDef.Make(typeof(string));
// Returns: typeof(List<string>)
// Get item type from collection
var collectionItemType = typeof(List<int>).GetItemType();
// Returns: typeof(int)
// Works with IEnumerable<T>, ICollection<T>, and IAsyncEnumerable<T>
var enumerableItemType = typeof(IEnumerable<string>).GetItemType();
// Returns: typeof(string)
Type Detection and Validation
Check type characteristics:
using Ecng.Reflection;
using Ecng.Common;
// Check if type is a collection
bool isList = typeof(List<int>).IsCollection(); // true
bool isArray = typeof(int[]).IsCollection(); // true
bool isEnumerable = typeof(IEnumerable<int>).IsCollection(); // true
// Check if type is primitive (extended definition)
bool isPrimitive = typeof(int).IsPrimitive(); // true
bool isString = typeof(string).IsPrimitive(); // true
bool isDateTime = typeof(DateTime).IsPrimitive(); // true
bool isGuid = typeof(Guid).IsPrimitive(); // true
// Check if type is numeric
bool isNumeric = typeof(int).IsNumeric(); // true
bool isIntegerNumeric = typeof(int).IsNumericInteger(); // true
bool isFloatNumeric = typeof(double).IsNumeric(); // true (but IsNumericInteger() = false)
// Check if type is struct or enum
bool isStruct = typeof(DateTime).IsStruct(); // true
bool isEnum = typeof(DayOfWeek).IsEnum(); // true
// Check if type is delegate or attribute
bool isDelegate = typeof(Action).IsDelegate(); // true
bool isAttribute = typeof(ObsoleteAttribute).IsAttribute(); // true
Member Information
Work with member metadata:
using Ecng.Reflection;
public class Product
{
public string Name { get; set; }
public decimal Price { get; set; }
public static int Count { get; set; }
}
var nameProperty = typeof(Product).GetProperty("Name");
var priceProperty = typeof(Product).GetProperty("Price");
var countProperty = typeof(Product).GetProperty("Count");
// Get the type of a member
Type nameType = nameProperty.GetMemberType(); // typeof(string)
Type priceType = priceProperty.GetMemberType(); // typeof(decimal)
// Check if member is static
bool isStatic = nameProperty.IsStatic(); // false
bool isCountStatic = countProperty.IsStatic(); // true
// Check if member is abstract
bool isAbstract = nameProperty.IsAbstract(); // false
// Check if member is virtual
bool isVirtual = nameProperty.IsVirtual(); // true (properties are virtual by default)
// Check if member is overloadable
bool isOverloadable = nameProperty.IsOverloadable(); // true
// Check if property is modifiable (has public setter and not read-only)
bool isModifiable = nameProperty.IsModifiable(); // true
Working with Indexers
Access indexer properties:
using Ecng.Reflection;
public class DataStore
{
private Dictionary<string, object> _data = new();
// Default indexer
public object this[string key]
{
get => _data[key];
set => _data[key] = value;
}
// Indexer with multiple parameters
public object this[int row, int col]
{
get => _data[$"{row},{col}"];
set => _data[$"{row},{col}"] = value;
}
}
// Get default string indexer
var stringIndexer = typeof(DataStore).GetIndexer(typeof(string));
// Get indexer with multiple parameters
var multiIndexer = typeof(DataStore).GetIndexer(typeof(int), typeof(int));
// Get all indexers
var allIndexers = typeof(DataStore).GetIndexers();
// Get indexer types
var indexerTypes = stringIndexer.GetIndexerTypes();
// Returns: [typeof(string)]
// Check if property is an indexer
bool isIndexer = stringIndexer.IsIndexer(); // true
Creating Instances
Fast instance creation:
using Ecng.Reflection;
using Ecng.Common;
public class Person
{
public Person() { }
public Person(string name, int age)
{
Name = name;
Age = age;
}
public string Name { get; set; }
public int Age { get; set; }
}
// Create with default constructor
var person1 = typeof(Person).CreateInstance();
// Create with parameters
var person2 = typeof(Person).CreateInstance("John", 30);
// Create with generic type parameter
var person3 = typeof(Person).CreateInstance<Person>("Jane", 25);
// Note: For value types, a default constructor is automatically supported
var point = typeof(Point).CreateInstance(); // Works even without explicit constructor
Finding Implementations
Scan assemblies for type implementations:
using Ecng.Reflection;
using System.Reflection;
// Find all implementations of IDisposable in the current assembly
var disposableTypes = Assembly.GetExecutingAssembly()
.FindImplementations<IDisposable>();
// Find all implementations with filters
var publicDisposableTypes = Assembly.GetExecutingAssembly()
.FindImplementations<IDisposable>(
showObsolete: false, // Exclude obsolete types
showNonPublic: false, // Exclude non-public types
showNonBrowsable: false // Exclude non-browsable types
);
// Find implementations with custom filter
var customTypes = Assembly.GetExecutingAssembly()
.FindImplementations<IComparable>(
extraFilter: t => t.Namespace?.StartsWith("MyApp") == true
);
// Check if type is compatible with requirements
bool isCompatible = typeof(MyClass).IsRequiredType<IService>();
// Checks: not abstract, public, not generic definition, has parameterless constructor
Method and Parameter Information
Work with methods and their parameters:
using Ecng.Reflection;
public class MathService
{
public int Calculate(int x, ref int y, out int result)
{
result = x + y;
y = y * 2;
return result;
}
public void Print(string message, params object[] args)
{
Console.WriteLine(message, args);
}
}
var method = typeof(MathService).GetMethod("Calculate");
// Get parameter types with info
var paramTypes = method.GetParameterTypes();
// Returns: [(param: x, type: int), (param: y, type: int&), (param: result, type: int&)]
// Get parameter types without ref/out wrappers
var plainParamTypes = method.GetParameterTypes(removeRef: true);
// Returns: [(param: x, type: int), (param: y, type: int), (param: result, type: int)]
// Check if parameter is output
var parameters = method.GetParameters();
bool isYOutput = parameters[1].IsOutput(); // true (ref parameter)
bool isResultOutput = parameters[2].IsOutput(); // true (out parameter)
// Check for params array
var printMethod = typeof(MathService).GetMethod("Print");
var printParams = printMethod.GetParameters();
bool hasParams = printParams[1].IsParams(); // true
// Get delegate invoke method
var delegateType = typeof(Action<int>);
var invokeMethod = delegateType.GetInvokeMethod();
Assembly and Type Validation
Verify assemblies and validate types:
using Ecng.Reflection;
// Check if file is a valid assembly
bool isAssembly = @"C:\path\to\MyLibrary.dll".IsAssembly();
// Verify assembly and get assembly name
AssemblyName asmName = @"C:\path\to\MyLibrary.dll".VerifyAssembly();
if (asmName != null)
{
Console.WriteLine($"Valid assembly: {asmName.FullName}");
}
// Check if type is runtime type
bool isRuntimeType = typeof(string).IsRuntimeType();
Accessor Methods and Property Names
Work with property/event accessor methods:
using Ecng.Reflection;
public class EventSource
{
public event EventHandler DataChanged;
public string Name { get; set; }
}
// Get property name from accessor method name
string propName = "get_Name".MakePropertyName(); // "Name"
string eventName = "add_DataChanged".MakePropertyName(); // "DataChanged"
// Get the owner member of an accessor method
var method = typeof(EventSource).GetMethod("get_Name", ReflectionHelper.AllInstanceMembers);
var owner = method.GetAccessorOwner();
// Returns: PropertyInfo for "Name" property
var addMethod = typeof(EventSource).GetMethod("add_DataChanged", ReflectionHelper.AllInstanceMembers);
var eventOwner = addMethod.GetAccessorOwner();
// Returns: EventInfo for "DataChanged" event
Member Signature Comparison
Compare member signatures for overload resolution:
using Ecng.Reflection;
public class Calculator
{
public int Add(int a, int b) => a + b;
public double Add(double a, double b) => a + b;
}
var method1 = typeof(Calculator).GetMember<MethodInfo>("Add", typeof(int), typeof(int));
var method2 = typeof(Calculator).GetMember<MethodInfo>("Add", typeof(double), typeof(double));
var sig1 = new MemberSignature(method1);
var sig2 = new MemberSignature(method2);
bool areSame = sig1.Equals(sig2); // false
// MemberSignature captures:
// - Return type
// - Parameter types
// - For indexers: indexer parameter types
Filtering Members
Filter members by various criteria:
using Ecng.Reflection;
public class DataService
{
public string GetData(int id) => "data";
public void SetData(int id, string value) { }
public string this[int index]
{
get => "value";
set { }
}
}
// Get all public instance members
var members = typeof(DataService).GetMembers<MemberInfo>(ReflectionHelper.AllInstanceMembers);
// Get all properties
var properties = typeof(DataService).GetMembers<PropertyInfo>();
// Get all methods with specific parameters
var getMethods = typeof(DataService).GetMembers<MethodInfo>(typeof(int));
// Filter members by type signature
var filtered = members.FilterMembers(isSetter: false, typeof(int));
// Returns members that accept (int) as parameter(s)
// Check member type
bool isMethod = members[0].MemberIs(MemberTypes.Method);
bool isPropertyOrField = members[0].MemberIs(MemberTypes.Property, MemberTypes.Field);
Proxy Types
Register proxy types for custom type resolution:
using Ecng.Reflection;
// Register a proxy type mapping
ReflectionHelper.ProxyTypes[typeof(IMyInterface)] = typeof(MyImplementation);
// When getting members, the library will automatically use the proxy type
var members = typeof(IMyInterface).GetMembers<MethodInfo>();
// Actually retrieves members from MyImplementation
Binding Flags Helpers
Use predefined binding flags for common scenarios:
using Ecng.Reflection;
// Get all members (public + non-public, static + instance)
var allMembers = typeof(MyClass).GetMembers<MemberInfo>(ReflectionHelper.AllMembers);
// Get all static members
var staticMembers = typeof(MyClass).GetMembers<MethodInfo>(ReflectionHelper.AllStaticMembers);
// Get all instance members
var instanceMembers = typeof(MyClass).GetMembers<PropertyInfo>(ReflectionHelper.AllInstanceMembers);
// Common attribute targets
// ReflectionHelper.Members = AttributeTargets.Field | AttributeTargets.Property
// ReflectionHelper.Types = AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface
Ordering Members
Order members by their declaration order:
using Ecng.Reflection;
public class MyClass
{
public string FirstProperty { get; set; }
public int SecondProperty { get; set; }
public bool ThirdProperty { get; set; }
}
var properties = typeof(MyClass)
.GetMembers<PropertyInfo>()
.OrderByDeclaration();
// Properties will be in declaration order: FirstProperty, SecondProperty, ThirdProperty
Matching Members with Binding Flags
Check if members match specific binding flags:
using Ecng.Reflection;
public class TestClass
{
public string PublicProperty { get; set; }
private int PrivateField;
public static void StaticMethod() { }
public void InstanceMethod() { }
}
var publicProp = typeof(TestClass).GetProperty("PublicProperty");
var privateField = typeof(TestClass).GetField("PrivateField", ReflectionHelper.AllInstanceMembers);
var staticMethod = typeof(TestClass).GetMethod("StaticMethod");
var instanceMethod = typeof(TestClass).GetMethod("InstanceMethod");
// Check if members match binding flags
bool matchPublic = publicProp.IsMatch(BindingFlags.Public | BindingFlags.Instance); // true
bool matchPrivate = privateField.IsMatch(BindingFlags.NonPublic | BindingFlags.Instance); // true
bool matchStatic = staticMethod.IsMatch(BindingFlags.Public | BindingFlags.Static); // true
bool noMatch = staticMethod.IsMatch(BindingFlags.Public | BindingFlags.Instance); // false
VoidType Class
A marker class for representing void type in generic contexts:
using Ecng.Reflection;
// Use VoidType when you need a type parameter but want to represent "void"
var voidType = typeof(VoidType);
// This can be useful in generic scenarios where you need a placeholder
// for methods that don't return a value
Performance Considerations
The library uses extensive caching to improve performance:
- Attribute cache: Caches retrieved attributes by (type, provider, inherit) key
- Generic type cache: Caches generic type lookups
- Collection type cache: Caches collection type checks
- Member property caches: Caches results for IsAbstract, IsVirtual, IsStatic checks
Cache Management
using Ecng.Reflection;
using Ecng.Common;
// Enable/disable caching (enabled by default)
ReflectionHelper.CacheEnabled = true;
AttributeHelper.CacheEnabled = true;
// Clear all caches
ReflectionHelper.ClearCache();
AttributeHelper.ClearCache();
Common Patterns
Getting All Public Properties with Setters
var writableProps = typeof(MyClass)
.GetMembers<PropertyInfo>(BindingFlags.Public | BindingFlags.Instance)
.Where(p => p.IsModifiable());
Finding All Methods That Take Specific Parameters
var methods = typeof(MyClass)
.GetMembers<MethodInfo>()
.Where(m => m.GetParameterTypes()
.Select(t => t.type)
.SequenceEqual(new[] { typeof(string), typeof(int) }));
Scanning Multiple Assemblies for Implementations
var assemblies = AppDomain.CurrentDomain.GetAssemblies();
var allImplementations = assemblies
.SelectMany(asm => asm.FindImplementations<IMyInterface>(
showObsolete: false,
showNonPublic: false
));
Working with Nullable Types
using Ecng.Common;
// Check if type is nullable
bool isNullable = typeof(int?).IsNullable(); // true
// Get underlying type
Type underlyingType = typeof(int?).GetUnderlyingType(); // typeof(int)
Advanced Topics
Custom Type Constructors
Implement ITypeConstructor for custom type instantiation logic:
using Ecng.Common;
public class CustomType : ITypeConstructor
{
public object CreateInstance(params object[] args)
{
// Custom instantiation logic
return new CustomType();
}
}
// When using CreateInstance, custom logic will be invoked
var instance = typeof(CustomType).CreateInstance();
Working with ref/out Parameters
using Ecng.Reflection;
// GetParameterTypes with removeRef: true strips ref/out wrappers
var method = typeof(MyClass).GetMethod("MethodWithRefParams");
var types = method.GetParameterTypes(removeRef: true);
// Check if parameter is output (ref or out)
foreach (var param in method.GetParameters())
{
if (param.IsOutput())
{
Console.WriteLine($"{param.Name} is an output parameter");
}
}
Constants and Definitions
// Indexer property name
ReflectionHelper.IndexerName // "Item"
// Accessor prefixes
ReflectionHelper.GetPrefix // "get_"
ReflectionHelper.SetPrefix // "set_"
ReflectionHelper.AddPrefix // "add_"
ReflectionHelper.RemovePrefix // "remove_"
// Binding flags
ReflectionHelper.AllMembers // Static | Instance | Public | NonPublic
ReflectionHelper.AllStaticMembers // Static | Public | NonPublic
ReflectionHelper.AllInstanceMembers // Instance | Public | NonPublic
// Attribute targets
ReflectionHelper.Members // Field | Property
ReflectionHelper.Types // Class | Struct | Interface
Dependencies
- Ecng.Collections: Collection utilities
- Ecng.Common: Common type helpers and extension methods
License
Part of the StockSharp/Ecng framework.
See Also
- Ecng.Common - Common utilities and type extensions
- Ecng.Collections - Collection utilities
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Ecng.Collections (>= 1.0.262)
-
net10.0
- Ecng.Collections (>= 1.0.262)
-
net6.0
- Ecng.Collections (>= 1.0.262)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Ecng.Reflection:
| Package | Downloads |
|---|---|
|
Ecng.Serialization
Ecng system framework |
|
|
Ecng.Backup.Yandex
Ecng system framework |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.277 | 0 | 12/25/2025 |
| 1.0.276 | 612 | 12/22/2025 |
| 1.0.275 | 550 | 12/21/2025 |
| 1.0.274 | 688 | 12/19/2025 |
| 1.0.273 | 656 | 12/19/2025 |
| 1.0.272 | 879 | 12/17/2025 |
| 1.0.271 | 957 | 12/15/2025 |
| 1.0.270 | 702 | 12/15/2025 |
| 1.0.269 | 661 | 12/14/2025 |
| 1.0.268 | 1,729 | 12/12/2025 |
| 1.0.267 | 947 | 12/12/2025 |
| 1.0.266 | 555 | 12/12/2025 |
| 1.0.265 | 558 | 12/12/2025 |
| 1.0.264 | 928 | 12/12/2025 |
| 1.0.263 | 1,261 | 12/2/2025 |
| 1.0.262 | 1,133 | 12/2/2025 |
| 1.0.261 | 1,139 | 12/2/2025 |
| 1.0.260 | 768 | 11/30/2025 |
| 1.0.259 | 608 | 11/29/2025 |
| 1.0.258 | 617 | 11/28/2025 |
| 1.0.257 | 620 | 11/28/2025 |
| 1.0.256 | 685 | 11/27/2025 |
| 1.0.255 | 736 | 11/24/2025 |
| 1.0.254 | 680 | 11/24/2025 |
| 1.0.253 | 681 | 11/23/2025 |
| 1.0.252 | 1,156 | 11/22/2025 |
| 1.0.251 | 1,438 | 11/20/2025 |
| 1.0.250 | 920 | 11/18/2025 |
| 1.0.249 | 870 | 11/18/2025 |
| 1.0.248 | 910 | 11/13/2025 |
| 1.0.247 | 810 | 11/10/2025 |
| 1.0.246 | 1,684 | 11/1/2025 |
| 1.0.245 | 926 | 10/28/2025 |
| 1.0.244 | 881 | 10/27/2025 |
| 1.0.243 | 765 | 10/27/2025 |
| 1.0.242 | 693 | 10/25/2025 |
| 1.0.241 | 4,303 | 10/3/2025 |
| 1.0.240 | 2,143 | 9/28/2025 |
| 1.0.239 | 876 | 9/25/2025 |
| 1.0.238 | 8,567 | 8/30/2025 |
| 1.0.237 | 1,746 | 8/19/2025 |
| 1.0.236 | 7,706 | 7/13/2025 |
| 1.0.235 | 738 | 7/13/2025 |
| 1.0.234 | 731 | 7/12/2025 |
| 1.0.233 | 1,975 | 7/8/2025 |
| 1.0.232 | 1,451 | 7/4/2025 |
| 1.0.231 | 806 | 7/2/2025 |
| 1.0.230 | 5,538 | 6/16/2025 |
| 1.0.229 | 931 | 6/9/2025 |
| 1.0.228 | 810 | 6/8/2025 |
| 1.0.227 | 2,422 | 5/21/2025 |
| 1.0.226 | 934 | 5/17/2025 |
| 1.0.225 | 2,487 | 5/12/2025 |
| 1.0.224 | 842 | 5/12/2025 |
| 1.0.223 | 3,122 | 4/17/2025 |
| 1.0.222 | 5,808 | 3/22/2025 |
| 1.0.221 | 795 | 3/20/2025 |
| 1.0.220 | 770 | 3/20/2025 |
| 1.0.219 | 795 | 3/19/2025 |
| 1.0.218 | 5,773 | 2/26/2025 |
| 1.0.217 | 842 | 2/26/2025 |
| 1.0.216 | 9,280 | 2/5/2025 |
| 1.0.215 | 4,674 | 1/21/2025 |
| 1.0.214 | 845 | 1/20/2025 |
| 1.0.213 | 715 | 1/20/2025 |
| 1.0.212 | 839 | 1/19/2025 |
| 1.0.211 | 2,453 | 1/14/2025 |
| 1.0.210 | 1,180 | 1/12/2025 |
| 1.0.209 | 763 | 1/12/2025 |
| 1.0.208 | 803 | 1/12/2025 |
| 1.0.207 | 954 | 1/12/2025 |
| 1.0.206 | 1,411 | 1/10/2025 |
| 1.0.205 | 4,943 | 12/27/2024 |
| 1.0.204 | 829 | 12/19/2024 |
| 1.0.203 | 1,261 | 11/20/2024 |
| 1.0.202 | 4,262 | 11/18/2024 |
| 1.0.201 | 2,651 | 11/7/2024 |
| 1.0.200 | 1,226 | 10/31/2024 |
| 1.0.199 | 1,110 | 10/19/2024 |
| 1.0.198 | 3,902 | 10/12/2024 |
| 1.0.197 | 4,440 | 10/5/2024 |
| 1.0.196 | 5,494 | 9/18/2024 |
| 1.0.195 | 869 | 9/17/2024 |
| 1.0.194 | 5,142 | 9/3/2024 |
| 1.0.193 | 885 | 9/1/2024 |
| 1.0.192 | 14,887 | 6/12/2024 |
| 1.0.191 | 3,673 | 5/28/2024 |
| 1.0.190 | 4,444 | 5/4/2024 |
| 1.0.189 | 3,081 | 4/23/2024 |
| 1.0.188 | 2,163 | 4/21/2024 |
| 1.0.187 | 1,038 | 4/14/2024 |
| 1.0.186 | 6,307 | 3/28/2024 |
| 1.0.185 | 970 | 3/17/2024 |
| 1.0.184 | 4,251 | 2/23/2024 |
| 1.0.183 | 906 | 2/23/2024 |
| 1.0.182 | 4,239 | 2/18/2024 |
| 1.0.181 | 872 | 2/18/2024 |
| 1.0.180 | 931 | 2/16/2024 |
| 1.0.179 | 2,969 | 2/13/2024 |
| 1.0.178 | 2,782 | 2/8/2024 |
| 1.0.177 | 3,161 | 2/5/2024 |
| 1.0.176 | 833 | 2/4/2024 |
| 1.0.175 | 3,379 | 1/23/2024 |
| 1.0.174 | 924 | 1/23/2024 |
| 1.0.173 | 2,600 | 1/12/2024 |
| 1.0.172 | 6,069 | 1/2/2024 |
| 1.0.171 | 1,061 | 12/29/2023 |
| 1.0.170 | 5,625 | 12/15/2023 |
| 1.0.169 | 14,666 | 11/12/2023 |
| 1.0.168 | 1,595 | 11/10/2023 |
| 1.0.167 | 1,190 | 11/10/2023 |
| 1.0.166 | 1,422 | 11/9/2023 |
| 1.0.165 | 2,220 | 11/3/2023 |
| 1.0.164 | 1,198 | 11/1/2023 |
| 1.0.163 | 1,222 | 11/1/2023 |
| 1.0.162 | 26,379 | 9/8/2023 |
| 1.0.161 | 1,574 | 9/8/2023 |
| 1.0.160 | 1,722 | 9/3/2023 |
| 1.0.159 | 2,014 | 8/21/2023 |
| 1.0.158 | 2,009 | 8/14/2023 |
| 1.0.157 | 1,034 | 8/14/2023 |
| 1.0.156 | 1,634 | 8/10/2023 |
| 1.0.155 | 42,230 | 6/29/2023 |
| 1.0.154 | 16,609 | 5/27/2023 |
| 1.0.153 | 1,754 | 5/21/2023 |
| 1.0.152 | 1,859 | 5/19/2023 |
| 1.0.151 | 27,261 | 5/8/2023 |
| 1.0.150 | 7,050 | 4/21/2023 |
| 1.0.149 | 52,832 | 4/3/2023 |
| 1.0.148 | 5,635 | 3/21/2023 |
| 1.0.147 | 4,177 | 3/13/2023 |
| 1.0.146 | 20,479 | 3/6/2023 |
| 1.0.145 | 2,703 | 2/26/2023 |
| 1.0.144 | 17,784 | 2/21/2023 |
| 1.0.143 | 2,105 | 2/20/2023 |
| 1.0.142 | 3,425 | 2/15/2023 |
| 1.0.141 | 2,122 | 2/14/2023 |
| 1.0.140 | 34,753 | 2/9/2023 |
| 1.0.139 | 18,563 | 2/7/2023 |
| 1.0.138 | 2,709 | 2/4/2023 |
| 1.0.137 | 22,988 | 2/2/2023 |
| 1.0.136 | 19,172 | 1/30/2023 |
| 1.0.135 | 7,719 | 1/18/2023 |
| 1.0.134 | 46,761 | 12/30/2022 |
| 1.0.133 | 4,073 | 12/23/2022 |
| 1.0.132 | 23,558 | 12/12/2022 |
| 1.0.131 | 26,314 | 12/4/2022 |
| 1.0.130 | 3,268 | 12/4/2022 |
| 1.0.129 | 4,060 | 11/30/2022 |
| 1.0.128 | 3,378 | 11/29/2022 |
| 1.0.127 | 3,482 | 11/28/2022 |
| 1.0.126 | 7,577 | 11/18/2022 |
| 1.0.125 | 30,685 | 11/11/2022 |
| 1.0.124 | 3,437 | 11/11/2022 |
| 1.0.123 | 3,186 | 11/10/2022 |
| 1.0.122 | 3,651 | 11/5/2022 |
| 1.0.121 | 5,004 | 11/4/2022 |
| 1.0.120 | 27,526 | 11/1/2022 |
| 1.0.119 | 28,040 | 10/16/2022 |
| 1.0.118 | 10,939 | 9/10/2022 |
| 1.0.117 | 54,685 | 9/8/2022 |
| 1.0.116 | 3,846 | 9/8/2022 |
| 1.0.115 | 3,765 | 9/8/2022 |
| 1.0.114 | 6,312 | 9/4/2022 |
| 1.0.113 | 94,275 | 8/24/2022 |
| 1.0.112 | 13,672 | 8/8/2022 |
| 1.0.111 | 7,118 | 7/26/2022 |
| 1.0.110 | 4,319 | 7/26/2022 |
| 1.0.109 | 57,481 | 7/19/2022 |
| 1.0.108 | 49,245 | 7/18/2022 |
| 1.0.107 | 9,433 | 7/8/2022 |
| 1.0.106 | 8,557 | 6/18/2022 |
| 1.0.105 | 4,287 | 6/6/2022 |
| 1.0.104 | 101,941 | 4/30/2022 |
| 1.0.103 | 4,536 | 4/20/2022 |
| 1.0.102 | 4,327 | 4/10/2022 |
| 1.0.101 | 4,522 | 4/7/2022 |
| 1.0.100 | 4,382 | 4/7/2022 |
| 1.0.99 | 4,396 | 4/2/2022 |
| 1.0.98 | 16,006 | 3/29/2022 |
| 1.0.97 | 7,199 | 3/27/2022 |
| 1.0.96 | 293,195 | 1/24/2022 |
| 1.0.95 | 166,626 | 12/29/2021 |
| 1.0.94 | 32,036 | 12/20/2021 |
| 1.0.93 | 4,649 | 12/13/2021 |
| 1.0.92 | 61,685 | 12/6/2021 |
| 1.0.91 | 6,012 | 12/2/2021 |
| 1.0.90 | 33,126 | 11/29/2021 |
| 1.0.89 | 31,484 | 11/22/2021 |
| 1.0.88 | 2,738 | 11/17/2021 |
| 1.0.87 | 33,223 | 11/13/2021 |
| 1.0.86 | 6,376 | 11/10/2021 |
| 1.0.85 | 2,907 | 11/9/2021 |
| 1.0.84 | 66,667 | 11/5/2021 |
| 1.0.83 | 4,580 | 11/4/2021 |
| 1.0.82 | 3,032 | 11/4/2021 |
| 1.0.81 | 2,895 | 11/3/2021 |
| 1.0.80 | 3,174 | 10/30/2021 |
| 1.0.79 | 34,965 | 10/21/2021 |
| 1.0.78 | 3,621 | 10/17/2021 |
| 1.0.77 | 65,247 | 10/14/2021 |
| 1.0.76 | 14,507 | 10/13/2021 |
| 1.0.75 | 3,161 | 10/12/2021 |
| 1.0.74 | 35,221 | 10/11/2021 |
| 1.0.73 | 3,002 | 10/9/2021 |
| 1.0.72 | 38,538 | 10/7/2021 |
| 1.0.71 | 40,536 | 10/7/2021 |
| 1.0.70 | 3,082 | 10/7/2021 |
| 1.0.69 | 2,835 | 10/6/2021 |
| 1.0.68 | 3,110 | 9/28/2021 |
| 1.0.67 | 36,976 | 9/23/2021 |
| 1.0.66 | 4,806 | 9/10/2021 |
| 1.0.65 | 2,832 | 9/9/2021 |
| 1.0.64 | 2,755 | 9/8/2021 |
| 1.0.63 | 2,556 | 9/8/2021 |
| 1.0.62 | 33,002 | 9/6/2021 |
| 1.0.61 | 3,031 | 8/31/2021 |
| 1.0.60 | 2,506 | 8/30/2021 |
| 1.0.59 | 35,838 | 7/31/2021 |
| 1.0.58 | 61,709 | 7/30/2021 |
| 1.0.57 | 3,193 | 7/26/2021 |
| 1.0.56 | 91,102 | 7/5/2021 |
| 1.0.55 | 3,145 | 7/1/2021 |
| 1.0.54 | 64,666 | 6/4/2021 |
| 1.0.53 | 92,321 | 4/26/2021 |
| 1.0.52 | 33,470 | 4/19/2021 |
| 1.0.51 | 150,105 | 4/7/2021 |
| 1.0.50 | 32,655 | 4/3/2021 |
| 1.0.49 | 178,770 | 3/22/2021 |
| 1.0.48 | 113,620 | 3/4/2021 |
| 1.0.47 | 35,939 | 2/26/2021 |
| 1.0.46 | 769 | 2/3/2021 |
| 1.0.45 | 167,871 | 2/2/2021 |
| 1.0.44 | 116,176 | 1/24/2021 |
| 1.0.43 | 3,424 | 1/24/2021 |
| 1.0.42 | 3,233 | 1/23/2021 |
| 1.0.41 | 60,063 | 1/20/2021 |
| 1.0.40 | 3,494 | 1/20/2021 |
| 1.0.39 | 31,656 | 1/18/2021 |
| 1.0.38 | 3,207 | 1/18/2021 |
| 1.0.37 | 30,300 | 1/16/2021 |
| 1.0.36 | 119,635 | 12/16/2020 |
| 1.0.35 | 57,620 | 12/14/2020 |
| 1.0.34 | 35,598 | 12/9/2020 |
| 1.0.33 | 5,737 | 12/6/2020 |
| 1.0.32 | 3,947 | 12/2/2020 |
| 1.0.31 | 3,801 | 12/2/2020 |
| 1.0.30 | 31,291 | 12/1/2020 |
| 1.0.29 | 186,869 | 11/12/2020 |
| 1.0.29-atestpub | 1,685 | 11/11/2020 |
| 1.0.28 | 32,772 | 10/11/2020 |
| 1.0.27 | 112,449 | 9/9/2020 |
| 1.0.26 | 31,208 | 9/3/2020 |
| 1.0.25 | 31,557 | 8/20/2020 |
| 1.0.24 | 85,868 | 8/9/2020 |
| 1.0.23 | 32,085 | 7/28/2020 |
| 1.0.22 | 30,998 | 7/19/2020 |
| 1.0.21 | 57,360 | 7/6/2020 |
| 1.0.20 | 86,102 | 6/6/2020 |
| 1.0.19 | 31,828 | 6/4/2020 |
| 1.0.18 | 58,978 | 5/29/2020 |
| 1.0.17 | 58,689 | 5/21/2020 |
| 1.0.16 | 4,508 | 5/17/2020 |
| 1.0.15 | 57,965 | 5/12/2020 |
| 1.0.14 | 111,907 | 5/4/2020 |
| 1.0.13 | 8,611 | 4/24/2020 |
| 1.0.12 | 11,221 | 4/22/2020 |
| 1.0.11 | 4,286 | 4/22/2020 |
| 1.0.10 | 4,271 | 4/21/2020 |
| 1.0.9 | 33,065 | 4/18/2020 |
| 1.0.8 | 30,939 | 4/16/2020 |
| 1.0.7 | 3,996 | 4/16/2020 |
| 1.0.6 | 26,419 | 4/15/2020 |
| 1.0.5 | 28,855 | 4/11/2020 |
| 1.0.4 | 27,952 | 4/3/2020 |
| 1.0.3 | 3,673 | 4/1/2020 |
| 1.0.2 | 15,043 | 3/27/2020 |
| 1.0.1 | 13,909 | 3/22/2020 |
| 1.0.0 | 6,119 | 3/22/2020 |
Added comprehensive README.md documentation for all projects