I-Synergy.Framework.Core 2025.11029.10201.38-preview

Prefix Reserved
This is a prerelease version of I-Synergy.Framework.Core.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package I-Synergy.Framework.Core --version 2025.11029.10201.38-preview
                    
NuGet\Install-Package I-Synergy.Framework.Core -Version 2025.11029.10201.38-preview
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="I-Synergy.Framework.Core" Version="2025.11029.10201.38-preview" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="I-Synergy.Framework.Core" Version="2025.11029.10201.38-preview" />
                    
Directory.Packages.props
<PackageReference Include="I-Synergy.Framework.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add I-Synergy.Framework.Core --version 2025.11029.10201.38-preview
                    
#r "nuget: I-Synergy.Framework.Core, 2025.11029.10201.38-preview"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package I-Synergy.Framework.Core@2025.11029.10201.38-preview
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=I-Synergy.Framework.Core&version=2025.11029.10201.38-preview&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=I-Synergy.Framework.Core&version=2025.11029.10201.38-preview&prerelease
                    
Install as a Cake Tool

I-Synergy Framework Core

Foundational library providing core abstractions, base classes, services, and utilities for building enterprise-grade .NET 10.0 applications. This package forms the foundation of the I-Synergy Framework ecosystem.

NuGet License .NET

Features

  • Observable base classes with automatic property change tracking and validation
  • Messenger service for loosely coupled component communication using weak references
  • Comprehensive extension methods for common types (string, datetime, collections, etc.)
  • Result pattern for robust error handling without exceptions
  • Scoped context service for managing tenant and user context across application layers
  • Busy service for managing application busy states in UI applications
  • Rich validation framework with data annotations support
  • Specialized collections (ObservableCollection, BinaryTree, Tree structures)
  • Utilities for common operations (file handling, regex, comparisons, etc.)
  • Type-safe serialization with JSON support
  • Attribute-based DI lifetime management for service registration
  • Async/await patterns with cancellation token support

Installation

Install the package via NuGet:

dotnet add package I-Synergy.Framework.Core

Quick Start

1. Observable Classes

Create observable objects with automatic property change notifications and dirty tracking:

using ISynergy.Framework.Core.Base;

public class Person : ObservableClass
{
    public string Name
    {
        get => GetValue<string>();
        set => SetValue(value);
    }

    public int Age
    {
        get => GetValue<int>();
        set => SetValue(value);
    }
}

// Usage
var person = new Person();
person.PropertyChanged += (s, e) => Console.WriteLine($"{e.PropertyName} changed");
person.Name = "John Doe"; // Triggers PropertyChanged event
Console.WriteLine(person.IsDirty); // true - object has unsaved changes

2. Observable Validated Classes

Add validation support to your models:

using ISynergy.Framework.Core.Base;
using System.ComponentModel.DataAnnotations;

public class Customer : ObservableValidatedClass
{
    [Required(ErrorMessage = "Email is required")]
    [EmailAddress(ErrorMessage = "Invalid email format")]
    public string Email
    {
        get => GetValue<string>();
        set => SetValue(value);
    }

    [Range(18, 120, ErrorMessage = "Age must be between 18 and 120")]
    public int Age
    {
        get => GetValue<int>();
        set => SetValue(value);
    }
}

// Usage
var customer = new Customer { Email = "invalid-email", Age = 15 };
if (!customer.IsValid)
{
    foreach (var error in customer.GetErrors())
    {
        Console.WriteLine(error.ErrorMessage);
    }
}

3. Messenger Service

Implement loosely coupled communication between components:

using ISynergy.Framework.Core.Abstractions.Services;
using ISynergy.Framework.Core.Services;

// Define a message
public record UserLoggedInMessage(string Username, DateTime LoginTime);

// Register a recipient
public class DashboardViewModel
{
    private readonly IMessengerService _messenger;

    public DashboardViewModel(IMessengerService messenger)
    {
        _messenger = messenger;
        _messenger.Register<UserLoggedInMessage>(this, OnUserLoggedIn);
    }

    private void OnUserLoggedIn(UserLoggedInMessage message)
    {
        Console.WriteLine($"User {message.Username} logged in at {message.LoginTime}");
    }
}

// Send a message
public class LoginService
{
    private readonly IMessengerService _messenger;

    public LoginService(IMessengerService messenger)
    {
        _messenger = messenger;
    }

    public async Task LoginAsync(string username)
    {
        // Perform login logic
        _messenger.Send(new UserLoggedInMessage(username, DateTime.UtcNow));
    }
}

// Configure in DI
services.AddScoped<IMessengerService, MessengerService>();

4. Result Pattern

Handle operations that may fail without throwing exceptions:

using ISynergy.Framework.Core.Models;

public class UserService
{
    public Result<User> GetUserById(int id)
    {
        var user = Database.FindUser(id);

        if (user is null)
            return Result<User>.Fail("User not found");

        return Result<User>.Success(user);
    }

    public Result UpdateUser(User user)
    {
        try
        {
            Database.Update(user);
            return Result.Success();
        }
        catch (Exception ex)
        {
            return Result.Fail($"Update failed: {ex.Message}");
        }
    }
}

// Usage
var result = userService.GetUserById(123);
if (result.IsSuccess)
{
    var user = result.Value;
    Console.WriteLine($"Found user: {user.Name}");
}
else
{
    Console.WriteLine($"Error: {result.ErrorMessage}");
}

5. Scoped Context Service

Manage tenant and user context across application layers:

using ISynergy.Framework.Core.Abstractions;
using ISynergy.Framework.Core.Abstractions.Services;
using ISynergy.Framework.Core.Extensions;

// Define your context
public class AppContext : IContext
{
    public Guid TenantId { get; set; }
    public string Username { get; set; }
    public List<string> Roles { get; set; }
}

// Configure in DI
services.AddScopedContext<AppContext>();

// Use in middleware or controllers
public class TenantMiddleware
{
    private readonly RequestDelegate _next;

    public TenantMiddleware(RequestDelegate next)
    {
        _next = next;
    }

    public async Task InvokeAsync(HttpContext httpContext, IScopedContextService contextService)
    {
        var tenantId = httpContext.Request.Headers["X-Tenant-ID"].FirstOrDefault();

        if (Guid.TryParse(tenantId, out var parsedTenantId))
        {
            contextService.SetContext(new AppContext
            {
                TenantId = parsedTenantId,
                Username = httpContext.User.Identity?.Name ?? "Anonymous"
            });
        }

        await _next(httpContext);
    }
}

// Access context in services
public class OrderService
{
    private readonly IScopedContextService _contextService;

    public OrderService(IScopedContextService contextService)
    {
        _contextService = contextService;
    }

    public async Task<List<Order>> GetOrdersAsync()
    {
        var context = _contextService.GetContext<AppContext>();
        return await Database.Orders
            .Where(o => o.TenantId == context.TenantId)
            .ToListAsync();
    }
}

Core Components

Base Classes

ISynergy.Framework.Core.Base/
├── ObservableClass              # INotifyPropertyChanged implementation with dirty tracking
├── ObservableValidatedClass     # ObservableClass + DataAnnotations validation
├── ModelClass                   # Base for domain models with identity
└── Property<T>                  # Property wrapper with change tracking

Services

ISynergy.Framework.Core.Services/
├── MessengerService             # Weak reference-based messaging
├── ScopedContextService         # Request-scoped context management
├── BusyService                  # UI busy state management
├── InfoService                  # Application info (version, name, etc.)
├── LanguageService              # Localization support
└── RequestCancellationService   # Centralized cancellation token management

Extensions

The Core library includes 35+ extension method classes:

  • String extensions: IsNullOrEmpty, IsValidEmail, ToTitleCase, SplitCamelCase, etc.
  • DateTime extensions: StartOfDay, EndOfDay, IsWeekend, AddWorkDays, etc.
  • Collection extensions: AddRange, RemoveWhere, ForEach, Distinct, etc.
  • Enum extensions: ToList, GetDescription, GetDisplayName, etc.
  • Type extensions: IsNullableType, GetDefaultValue, ImplementsInterface, etc.
  • Object extensions: ToJson, FromJson, DeepClone, etc.
  • Task extensions: SafeFireAndForget, WithCancellation, WithTimeout, etc.

Usage Examples

Managing UI Busy States

using ISynergy.Framework.Core.Abstractions.Services;

public class DataLoadViewModel
{
    private readonly IBusyService _busyService;
    private readonly IDataService _dataService;

    public DataLoadViewModel(IBusyService busyService, IDataService dataService)
    {
        _busyService = busyService;
        _dataService = dataService;
    }

    public async Task LoadDataAsync()
    {
        try
        {
            _busyService.StartBusy("Loading data...");

            var data = await _dataService.GetDataAsync();

            _busyService.UpdateMessage("Processing data...");
            ProcessData(data);
        }
        finally
        {
            _busyService.StopBusy();
        }
    }
}

// Bind to UI
<ProgressRing IsActive="{Binding BusyService.IsBusy}" />
<TextBlock Text="{Binding BusyService.BusyMessage}" />

Using Extension Methods

using ISynergy.Framework.Core.Extensions;

// String extensions
string email = "  john.doe@example.com  ";
bool isValid = email.IsValidEmail(); // true
string clean = email.Trim().ToLower();

// DateTime extensions
var date = DateTime.Now;
var startOfWeek = date.StartOfWeek();
var endOfMonth = date.EndOfMonth();
bool isWeekend = date.IsWeekend();

// Collection extensions
var list = new List<int> { 1, 2, 3, 4, 5 };
list.RemoveWhere(x => x % 2 == 0); // Removes even numbers
var chunks = list.Chunk(2); // Split into chunks of 2

// Enum extensions
public enum OrderStatus
{
    [Description("Pending approval")]
    Pending,
    [Description("Approved and processing")]
    Approved,
    Completed
}

var statuses = EnumExtensions.ToList<OrderStatus>();
string description = OrderStatus.Pending.GetDescription(); // "Pending approval"

// Object extensions
var person = new Person { Name = "John", Age = 30 };
string json = person.ToJson();
var clone = person.DeepClone();

Custom Collections

using ISynergy.Framework.Core.Collections;

// ObservableCollection with item property change tracking
var products = new ObservableCollection<Product>();
products.CollectionChanged += (s, e) => Console.WriteLine("Collection changed");
products.ItemPropertyChanged += (s, e) =>
    Console.WriteLine($"Item property {e.PropertyName} changed");

var product = new Product { Name = "Widget", Price = 9.99m };
products.Add(product);
product.Price = 12.99m; // Triggers ItemPropertyChanged

// Binary Tree
var tree = new BinaryTree<int>();
tree.Add(5);
tree.Add(3);
tree.Add(7);
tree.Add(1);
tree.Add(9);

bool contains = tree.Contains(7); // true
tree.InOrderTraversal(value => Console.WriteLine(value)); // 1, 3, 5, 7, 9

Configuration

Dependency Injection Setup

using ISynergy.Framework.Core.Extensions;
using ISynergy.Framework.Core.Abstractions.Services;
using ISynergy.Framework.Core.Services;

public void ConfigureServices(IServiceCollection services)
{
    // Core services
    services.AddSingleton<IMessengerService, MessengerService>();
    services.AddSingleton<IBusyService, BusyService>();
    services.AddSingleton<IInfoService, InfoService>();
    services.AddSingleton<ILanguageService, LanguageService>();

    // Context management
    services.AddScopedContext<AppContext>();

    // Or use lifetime attributes
    services.Scan(scan => scan
        .FromAssemblyOf<Startup>()
        .AddClasses()
        .UsingRegistrationStrategy(RegistrationStrategy.Skip)
        .UsingAttributes());
}

Using Lifetime Attributes

using ISynergy.Framework.Core.Attributes;

[Lifetime(Lifetimes.Transient)]
public class TransientService : ITransientService
{
    // Service implementation
}

[Lifetime(Lifetimes.Scoped)]
public class ScopedService : IScopedService
{
    // Service implementation
}

[Lifetime(Lifetimes.Singleton)]
public class SingletonService : ISingletonService
{
    // Service implementation
}

Advanced Features

Custom Validation Rules

using ISynergy.Framework.Core.Base;
using ISynergy.Framework.Core.Validation;

public class Order : ObservableValidatedClass
{
    public decimal Amount { get; set; }
    public string CustomerEmail { get; set; }

    protected override IEnumerable<ValidationResult> Validate()
    {
        // Custom validation logic
        if (Amount < 0)
            yield return new ValidationResult(
                "Amount cannot be negative",
                new[] { nameof(Amount) });

        if (Amount > 10000 && string.IsNullOrEmpty(CustomerEmail))
            yield return new ValidationResult(
                "Email required for orders over $10,000",
                new[] { nameof(CustomerEmail) });
    }
}

Safe Fire and Forget

using ISynergy.Framework.Core.Extensions;

public class NotificationService
{
    public void SendNotification(string message)
    {
        // Fire and forget without blocking
        SendEmailAsync(message).SafeFireAndForget(
            onException: ex => Console.WriteLine($"Error: {ex.Message}"));
    }

    private async Task SendEmailAsync(string message)
    {
        await Task.Delay(1000);
        // Send email logic
    }
}

Object Pooling

using ISynergy.Framework.Core.Extensions;
using Microsoft.Extensions.ObjectPool;

public class BufferPool
{
    private readonly ObjectPool<byte[]> _pool;

    public BufferPool()
    {
        var policy = new DefaultPooledObjectPolicy<byte[]>();
        _pool = new DefaultObjectPool<byte[]>(policy);
    }

    public async Task ProcessDataAsync(Stream stream)
    {
        var buffer = _pool.Get();
        try
        {
            await stream.ReadAsync(buffer, 0, buffer.Length);
            // Process buffer
        }
        finally
        {
            _pool.Return(buffer);
        }
    }
}

Best Practices

Use ObservableClass as the base for all ViewModels and models that need property change notifications.

Always call Dispose() or use using statements with ObservableClass instances to prevent memory leaks from event handlers.

The MessengerService uses weak references by default. Set keepTargetAlive: true only when using closures in message handlers.

Observable Class Usage

  • Always use GetValue<T>() and SetValue() for properties that need change tracking
  • Call MarkAsClean() after saving changes to reset dirty tracking
  • Use Revert() to restore original values before committing
  • Dispose instances properly to clean up event handlers

Messenger Service Usage

  • Prefer constructor injection over MessengerService.Default singleton
  • Unregister recipients in cleanup/dispose methods to prevent memory leaks
  • Use tokens to create isolated message channels
  • Keep message types immutable (use records)

Result Pattern Usage

  • Return Result<T> for operations that may fail
  • Use Result.Success() and Result.Fail() factory methods
  • Check IsSuccess before accessing Value
  • Include meaningful error messages

Context Service Usage

  • Set context early in the request pipeline (middleware/filters)
  • Don't store context in long-lived services
  • Use context for tenant isolation and user-specific operations
  • Clear context at the end of the request scope

Testing

The Core library is designed for testability:

[Fact]
public void ObservableClass_PropertyChange_RaisesEvent()
{
    // Arrange
    var person = new Person();
    var eventRaised = false;
    person.PropertyChanged += (s, e) =>
    {
        if (e.PropertyName == nameof(Person.Name))
            eventRaised = true;
    };

    // Act
    person.Name = "John";

    // Assert
    Assert.True(eventRaised);
    Assert.True(person.IsDirty);
}

[Fact]
public void Messenger_SendMessage_DeliversToRecipient()
{
    // Arrange
    var messenger = new MessengerService();
    var received = false;
    var recipient = new object();

    messenger.Register<string>(recipient, msg => received = true);

    // Act
    messenger.Send("Test message");

    // Assert
    Assert.True(received);
}

Dependencies

  • Microsoft.Extensions.DependencyInjection - Dependency injection support
  • Microsoft.Extensions.Logging.Abstractions - Logging infrastructure
  • Microsoft.Extensions.ObjectPool - Object pooling
  • Microsoft.Extensions.Hosting - Application lifetime management
  • Microsoft.Extensions.Options.DataAnnotations - Configuration validation
  • Microsoft.Extensions.Configuration.Binder - Configuration binding

Documentation

For more information about the I-Synergy Framework:

  • I-Synergy.Framework.Mvvm - MVVM framework building on Core abstractions
  • I-Synergy.Framework.CQRS - CQRS implementation using Core messaging
  • I-Synergy.Framework.EntityFramework - EF Core integration with Core models
  • I-Synergy.Framework.AspNetCore - ASP.NET Core integration

Support

For issues, questions, or contributions, please visit the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (35)

Showing the top 5 NuGet packages that depend on I-Synergy.Framework.Core:

Package Downloads
I-Synergy.Framework.AspNetCore

I-Synergy Framework AspNetCore

I-Synergy.Framework.Mvvm

I-Synergy Framework Mvvm

I-Synergy.Framework.MessageBus

I-Synergy Framework MessageBus

I-Synergy.Framework.Storage

I-Synergy Framework Storage

I-Synergy.Framework.Geography

I-Synergy Framework Geography

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2025.11102.12003.8-preview 0 11/2/2025
2025.11102.11228.52-preview 0 11/2/2025
2025.11102.10309.42-preview 26 11/2/2025
2025.11029.11433.38-preview 159 10/29/2025
2025.11029.10201.38-preview 168 10/29/2025
2025.11027.11947.55-preview 202 10/27/2025
2025.11022.12207.12-preview 192 10/22/2025
2025.11019.12053.37-preview 199 10/19/2025
2025.11016.11750.24-preview 194 10/16/2025
2025.11015.10219.44-preview 194 10/15/2025
2025.11014.10245.12-preview 200 10/14/2025
2025.11012.10130.11-preview 241 10/12/2025
2025.11010.10052.52-preview 310 10/9/2025
2025.11001.12118.13-preview 337 10/1/2025
2025.10925.10144.25-preview 399 9/25/2025
2025.10921.11353.29-preview 393 9/21/2025
2025.10913.11841.29-preview 284 9/13/2025
2025.10912.12351.59-preview 236 9/12/2025
2025.10912.10210.52-preview 304 9/12/2025
2025.10911.10131.43-preview 281 9/10/2025
2025.10910.12340.34-preview 300 9/10/2025
2025.10910.11327.15-preview 293 9/10/2025
2025.10910.11206.45-preview 292 9/10/2025
2025.10910.10230.58-preview 307 9/10/2025
2025.10908.12343.47-preview 492 9/8/2025
2025.10904.12337.35-preview 485 9/4/2025
2025.10904.12245.51-preview 507 9/4/2025
2025.10904.11425.5-preview 512 9/4/2025
2025.10904.10323.39-preview 492 9/4/2025
2025.10826.11425.3-preview 584 8/26/2025
2025.10825.12350.9-preview 499 8/25/2025
2025.10810.10248-preview 481 8/10/2025
2025.10809.10146.35-preview 479 8/9/2025
2025.10806.12031.49-preview 563 8/6/2025
2025.10806.11955.54-preview 570 8/6/2025
2025.10806.11433.24-preview 568 8/6/2025
2025.10709.10105.39-preview 499 7/8/2025
2025.10707.12320.3-preview 496 7/7/2025
2025.10706.11957.9-preview 501 7/6/2025
2025.10702.11752.47-preview 509 7/2/2025
2025.10702.11256.17-preview 506 7/2/2025
2025.10702.11119.10-preview 507 7/2/2025
2025.10702.10000.31-preview 490 7/1/2025
2025.10701.11524.1-preview 500 7/1/2025
2025.10701.11310.13-preview 497 7/1/2025
2025.10630.12022.58-preview 474 6/30/2025
2025.10612.12134.8-preview 691 6/12/2025
2025.10611.12313.53-preview 637 6/11/2025
2025.10603.10159.54-preview 485 6/3/2025
2025.10602.11908.9-preview 508 6/2/2025
2025.10601.10124.29-preview 455 5/31/2025
2025.10531.12235.29-preview 447 5/31/2025
2025.10530.10121.50-preview 506 5/29/2025
2025.10527.12202.4-preview 517 5/27/2025
2025.10526.12034.25-preview 508 5/26/2025
2025.10521.11828.30-preview 495 5/21/2025
2025.10520.11715.6-preview 505 5/20/2025
2025.10520.11515.16-preview 537 5/20/2025
2025.10518.12303.43-preview 519 5/18/2025
2025.10518.11257.36-preview 520 5/18/2025
2025.10517.12347.27-preview 464 5/17/2025
2025.10517.12003.6-preview 448 5/17/2025
2025.10516.11720.13-preview 532 5/16/2025
2025.10514.12334.2-preview 614 5/14/2025
2025.10514.10015.27-preview 571 5/13/2025
2025.10511.11032.32-preview 538 5/11/2025
2025.10413.11530 595 4/13/2025
2025.10413.11434.33-preview 607 4/13/2025
2025.10413.10205.50-preview 522 4/13/2025
2025.10412.11526.4-preview 498 4/12/2025
2025.10412.10141 518 4/12/2025
2025.10411.11811.23-preview 536 4/11/2025
2025.10411.11645.1-preview 530 4/11/2025
2025.10410.11458.35-preview 588 4/10/2025
2025.10405.10143.28-preview 478 4/5/2025
2025.10403.12208.1-preview 555 4/3/2025
2025.10403.11954.16-preview 535 4/3/2025
2025.10401.11908.24-preview 530 4/1/2025
2025.10401.11559.45-preview 547 4/1/2025
2025.10331.12215.59-preview 521 3/31/2025
2025.10331.12130.34-preview 583 3/31/2025
2025.10331.10056.40-preview 518 3/30/2025
2025.10328.10150.21-preview 800 3/28/2025
2025.10323.11359-preview 964 3/23/2025
2025.10320.11800 804 3/20/2025
2025.10320.11616.45-preview 796 3/20/2025
2025.10320.10000 778 3/19/2025
2025.10319.12311.26-preview 783 3/19/2025
2025.10319.12238.6-preview 833 3/19/2025
2025.10319.12057.59-preview 812 3/19/2025
2025.10318.10055 844 3/18/2025
2025.10317.11728.13-preview 825 3/17/2025
2025.10317.11201.3-preview 850 3/17/2025
2025.10315.11523.14-preview 753 3/15/2025
2025.10305.12342 1,081 3/5/2025
2025.10305.12321.9-preview 872 3/5/2025
2025.10301.12313 981 3/1/2025
2025.10301.12129.38-preview 819 3/1/2025
2025.10221.10043.29-preview 832 2/21/2025
2025.1051.1246 912 2/20/2025
2025.1051.44.54-preview 759 2/20/2025
2025.1044.1 983 2/13/2025
2025.1044.0.2-preview 792 2/13/2025
2025.1043.0.2-preview 809 2/12/2025
2025.1041.0.1-preview 827 2/10/2025
2025.1038.1 971 2/7/2025
2025.1038.0.1-preview 840 2/7/2025
2025.1035.1 924 2/4/2025
2025.1035.0.1-preview 831 2/4/2025
2025.1034.1 888 2/3/2025
2025.1034.0.1-preview 797 2/3/2025
2025.1033.0.5-preview 826 2/2/2025
2025.1033.0.3-preview 786 2/2/2025
2025.1033.0.2-preview 807 2/2/2025
2025.1033.0.1-preview 782 2/2/2025
2025.1025.1 1,008 1/25/2025
2025.1025.0.1-preview 862 1/25/2025
2025.1021.1 1,043 1/21/2025
2025.1021.0.1-preview 894 1/21/2025
2025.1020.1 1,041 1/20/2025
2025.1020.0.3-preview 894 1/20/2025
2025.1020.0.1-preview 903 1/20/2025
2025.1018.0.7-preview 933 1/18/2025
2025.1018.0.5-preview 881 1/18/2025
2025.1018.0.4-preview 885 1/18/2025
2025.1017.0.2-preview 914 1/17/2025
2025.1017.0.1-preview 862 1/17/2025
2025.1016.0.1-preview 836 1/16/2025
2025.1010.1 974 1/10/2025
2025.1010.0.1-preview 852 1/9/2025
2025.1009.0.3-preview 860 1/9/2025
2025.1007.1 1,042 1/7/2025
2025.1007.0.5-preview 889 1/7/2025
2025.1007.0.3-preview 902 1/7/2025
2025.1006.1 1,018 1/7/2025
2025.1005.1 1,021 1/5/2025
2025.1005.0.2-preview 870 1/5/2025
2025.1004.1 1,021 1/4/2025
2024.1366.1 1,004 12/31/2024
2024.1366.0.2-preview 953 12/31/2024
2024.1366.0.1-preview 915 12/31/2024
2024.1365.0.2-preview 895 12/30/2024
2024.1365.0.1-preview 945 12/30/2024
2024.1361.0.2-preview 895 12/26/2024
2024.1353.0.1-preview 894 12/18/2024
2024.1352.0.3-preview 907 12/17/2024
2024.1352.0.2-preview 927 12/17/2024
2024.1352.0.1-preview 871 12/17/2024
2024.1351.1 1,062 12/16/2024
2024.1351.0.3-preview 900 12/16/2024
2024.1350.1 1,070 12/15/2024
2024.1343.1 1,049 12/8/2024
2024.1339.1 1,049 12/4/2024
2024.1336.1 1,089 12/1/2024
2024.1332.1 1,048 11/27/2024
2024.1330.1 1,038 11/25/2024
2024.1328.1 1,072 11/23/2024
2024.1325.1 1,062 11/20/2024
2024.1323.1 1,059 11/18/2024
2024.1316.1 119 11/11/2024
2024.1307.1 133 11/2/2024
2024.1300.1 146 10/26/2024
2024.1294.1 156 10/20/2024
2024.1290.1 1,049 10/16/2024
2024.1283.1 1,173 10/8/2024
2024.1282.1 1,069 10/8/2024
2024.1278.1 1,127 10/4/2024
2024.1277.1 1,074 10/3/2024
2024.1275.2 622 10/1/2024
2024.1275.1 560 10/1/2024
2024.1274.1 571 9/30/2024
2024.1263.1 566 9/19/2024
2024.1261.1 717 9/17/2024
2024.1258.1 615 9/13/2024
2024.1257.1 651 9/13/2024
2024.1256.1 603 9/12/2024
2024.1254.1 639 9/10/2024
2024.1250.1 677 9/6/2024
2024.1249.1 650 9/5/2024
2024.1246.1 651 9/2/2024
2024.1245.1 615 9/1/2024
2024.1237.1 650 8/24/2024
2024.1235.0.1-preview 631 8/23/2024
2024.1230.1 610 8/18/2024
2024.1229.1 625 8/16/2024
2024.1228.1 622 8/15/2024
2024.1222.1 715 8/8/2024
2024.1221.1 675 8/7/2024
2024.1221.0.2-preview 555 8/8/2024
2024.1221.0.1-preview 580 8/8/2024
2024.1220.1 596 8/7/2024
2024.1219.0.2-preview 560 8/6/2024
2024.1219.0.1-preview 547 8/6/2024
2024.1217.0.2-preview 513 8/4/2024
2024.1217.0.1-preview 512 8/4/2024
2024.1216.0.2-preview 524 8/3/2024
2024.1216.0.1-preview 524 8/3/2024
2024.1208.0.1-preview 502 7/26/2024
2024.1207.0.7-preview 520 7/25/2024
2024.1207.0.5-preview 483 7/25/2024
2024.1166.1 677 6/14/2024
2024.1165.1 576 6/13/2024
2024.1164.1 545 6/12/2024
2024.1162.1 579 6/10/2024
2024.1158.1 650 6/6/2024
2024.1156.1 614 6/4/2024
2024.1152.1 733 5/31/2024
2024.1151.1 643 5/29/2024
2024.1150.2 600 5/29/2024
2024.1150.1 596 5/29/2024
2024.1149.1 570 5/28/2024
2024.1147.1 587 5/26/2024
2024.1146.2 544 5/25/2024
2024.1146.1 566 5/25/2024
2024.1145.1 562 5/24/2024
2024.1135.2 564 5/14/2024
2024.1135.1 540 5/14/2024
2024.1134.1 571 5/13/2024
2024.1130.1 623 5/9/2024
2024.1123.1 618 5/2/2024
2024.1121.1 593 4/30/2024
2024.1114.1 654 4/22/2024
2024.1113.0.5-preview 593 4/22/2024
2024.1113.0.3-preview 571 4/22/2024
2024.1113.0.2-preview 583 4/22/2024
2024.1113.0.1-preview 558 4/22/2024
2024.1108.0.1-preview 559 4/17/2024
2024.1107.0.1-preview 589 4/16/2024
2024.1094.2 657 4/3/2024
2024.1094.1 571 4/3/2024
2024.1092.1 618 4/1/2024
2024.1088.1 630 3/28/2024
2024.1085.1 661 3/25/2024
2024.1080.2 709 3/20/2024
2024.1080.1 692 3/20/2024
2024.1078.1 713 3/18/2024
2024.1077.1 632 3/17/2024
2024.1073.1 736 3/13/2024
2024.1070.1 788 3/10/2024
2024.1069.1 777 3/9/2024
2024.1068.1 772 3/8/2024
2024.1066.2 697 3/6/2024
2024.1066.1 730 3/6/2024
2024.1065.1 787 3/5/2024
2024.1065.0.1-preview 713 3/5/2024
2024.1063.2 801 3/3/2024
2024.1063.1 759 3/3/2024
2024.1062.1 723 3/2/2024
2024.1061.2 790 3/1/2024
2024.1061.1 792 3/1/2024
2024.1060.2 727 2/29/2024
2024.1060.1 818 2/29/2024
2024.1060.0.5-preview 710 2/29/2024
2024.1060.0.3-preview 693 2/29/2024
2024.1059.0.1-preview 711 2/28/2024
2024.1058.1 762 2/27/2024
2024.1056.1 764 2/25/2024
2024.1055.1 799 2/24/2024
2024.1052.1 864 2/21/2024
2024.1050.2 848 2/20/2024
2024.1050.1 825 2/19/2024
2024.1049.1 818 2/18/2024
2024.1048.1 825 2/17/2024
2024.1047.1 850 2/16/2024
2024.1035.1 981 2/4/2024
2024.1034.2 928 2/3/2024
2024.1029.1 2,267 1/29/2024
2024.1023.1 2,340 1/23/2024
2024.1022.1 2,277 1/22/2024
2024.1020.1 2,207 1/20/2024
2024.1019.1 2,231 1/19/2024
2024.1017.1 2,248 1/17/2024
2024.1012.1 2,330 1/12/2024
2024.1010.1 2,333 1/10/2024
2024.1008.1 2,479 1/8/2024
2024.1007.1 2,436 1/7/2024
2024.1005.1 2,423 1/5/2024
2024.1004.1 2,437 1/4/2024
2023.1365.1 2,462 12/31/2023
2023.1362.1 2,413 12/28/2023
2023.1361.1 2,539 12/27/2023
2023.1359.1 2,475 12/25/2023
2023.1358.1 2,473 12/24/2023
2023.1357.1 2,461 12/23/2023
2023.1342.1 2,759 12/8/2023
2023.1336.1 2,800 12/2/2023
2023.1332.1 2,799 11/28/2023
2023.1330.1 2,677 11/26/2023
2023.1325.1 2,768 11/21/2023
2023.1323.1 1,111 11/19/2023
2023.1320.1 1,146 11/17/2023
2023.1318.1 2,716 11/15/2023
2023.1317.1 1,023 11/13/2023
2023.1307.1 1,090 11/3/2023
2023.1305.1 1,105 11/1/2023
2023.1304.1 1,065 10/31/2023
2023.1294.1 1,116 10/21/2023
2023.1290.1 1,055 10/16/2023
2023.1289.1 1,133 10/16/2023
2023.1284.1 1,149 10/11/2023
2023.1276.1 1,178 10/3/2023
2023.1275.1 1,209 10/2/2023
2023.1272.1 1,250 9/29/2023
2023.1269.1 1,225 9/26/2023
2023.1242.1 3,197 8/30/2023
2023.1231.1 3,448 8/19/2023
2023.1229.1 3,442 8/17/2023
2023.1228.1 3,289 8/16/2023
2023.1227.1 3,360 8/15/2023
2023.1224.2 3,434 8/12/2023
2023.1224.1 3,472 8/12/2023
2023.1213.2 3,641 8/1/2023
2023.1213.1 3,649 8/1/2023
2023.1209.1 3,614 7/27/2023
2023.1201.1 3,724 7/20/2023
2023.1197.1 3,731 7/16/2023
2023.1178.1 3,815 6/27/2023
2023.1175.1 3,931 6/24/2023
2023.1174.1 3,820 6/22/2023
2023.1169.1 3,957 6/18/2023
2023.1165.1 3,871 6/14/2023
2023.1161.1 4,129 6/11/2023
2023.1159.1 4,134 6/7/2023
2023.1157.1 4,224 6/6/2023
2023.1146.1 4,113 5/27/2023
2023.1139.1 4,309 5/19/2023
2023.1137.1 4,385 5/17/2023
2023.1136.1 4,464 5/16/2023
2023.1118.1 4,766 4/28/2023
2023.1111.1 4,784 4/21/2023
2023.1110.1 4,829 4/20/2023
2023.1105.1 4,805 4/15/2023
2023.1103.1 4,744 4/13/2023
2023.1102.1 4,865 4/12/2023
2023.1101.1 4,937 4/11/2023
2023.1090.1 5,478 3/31/2023
2023.1089.1 5,340 3/30/2023
2023.1088.1 5,217 3/29/2023
2023.1082.1 5,276 3/23/2023
2023.1078.1 5,652 3/19/2023
2023.1070.1 5,691 3/11/2023
2023.1069.1 5,625 3/10/2023
2023.1064.1 5,707 3/5/2023
2023.1060.1 5,795 3/1/2023
2023.1057.1 5,956 2/26/2023
2023.1046.1 6,320 2/15/2023
2023.1043.2 6,484 2/12/2023
2023.1043.1 6,304 2/12/2023
2023.1042.1 6,451 2/11/2023
2023.1041.1 6,278 2/10/2023
2023.1039.1 6,354 2/8/2023
2023.1036.1 6,247 2/5/2023
2023.1035.1 6,437 2/4/2023
2023.1033.1 6,480 2/2/2023
2023.1030.1 6,696 1/30/2023
2023.1028.1 6,718 1/28/2023
2023.1026.1 6,747 1/26/2023
2023.1025.1 6,732 1/25/2023
2023.1024.1 6,736 1/24/2023
2023.1023.1 6,820 1/23/2023
2022.1319.1 7,116 11/15/2022
2022.1309.1 8,051 11/5/2022
2022.1307.1 8,149 11/3/2022
2022.1295.1 9,041 10/22/2022
2022.1290.1 9,226 10/17/2022
2022.1289.2 9,122 10/16/2022
2022.1289.1 8,531 10/16/2022
2022.1283.1 8,890 10/10/2022
2022.1282.1 8,636 10/9/2022
2022.1278.1 8,616 10/5/2022
2022.1272.2 8,905 9/29/2022
2022.1272.1 8,948 9/29/2022
2022.1271.1 9,013 9/28/2022
2022.1266.1 9,252 9/23/2022
2022.1259.1 9,178 9/16/2022
2022.1257.1 9,152 9/14/2022
2022.1250.1 9,221 9/7/2022
2022.1250.0.2-preview 2,863 9/7/2022
2022.1249.0.2-preview 2,869 9/6/2022
2022.1249.0.1-preview 2,900 9/6/2022
2022.1197.1 8,886 7/16/2022
2022.1196.1 8,938 7/15/2022
2022.1194.1 8,914 7/13/2022
2022.1182.1 8,978 7/1/2022
2022.1178.1 8,889 6/27/2022
2022.1166.1 8,900 6/15/2022
2022.1157.1 9,078 6/6/2022
2022.1150.1 8,954 5/30/2022
2022.1149.1 9,001 5/29/2022
2022.1144.1 9,104 5/24/2022
0.6.2 9,078 5/23/2022
0.6.1 9,016 5/23/2022
0.6.0 9,059 5/14/2022
0.5.3 9,343 5/8/2022
0.5.2 9,181 5/1/2022
0.5.1 9,121 5/1/2022
0.5.0 9,034 4/23/2022
0.4.1 9,725 4/15/2022
0.4.0 9,686 4/9/2022
0.3.3 9,722 4/8/2022
0.3.2 9,860 4/1/2022
0.3.1 9,830 3/29/2022
0.3.0 9,616 3/28/2022
0.2.3 9,800 3/28/2022
0.2.2 9,705 3/25/2022
0.2.1 9,851 3/21/2022
0.2.0 9,682 3/18/2022