I-Synergy.Framework.Mvvm 2025.11102.10309.42-preview

Prefix Reserved
This is a prerelease version of I-Synergy.Framework.Mvvm.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package I-Synergy.Framework.Mvvm --version 2025.11102.10309.42-preview
                    
NuGet\Install-Package I-Synergy.Framework.Mvvm -Version 2025.11102.10309.42-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.Mvvm" Version="2025.11102.10309.42-preview" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="I-Synergy.Framework.Mvvm" Version="2025.11102.10309.42-preview" />
                    
Directory.Packages.props
<PackageReference Include="I-Synergy.Framework.Mvvm" />
                    
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.Mvvm --version 2025.11102.10309.42-preview
                    
#r "nuget: I-Synergy.Framework.Mvvm, 2025.11102.10309.42-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.Mvvm@2025.11102.10309.42-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.Mvvm&version=2025.11102.10309.42-preview&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=I-Synergy.Framework.Mvvm&version=2025.11102.10309.42-preview&prerelease
                    
Install as a Cake Tool

I-Synergy Framework MVVM

A comprehensive MVVM (Model-View-ViewModel) framework for building modern .NET 10.0 applications. This package provides a complete set of base classes, commands, and services for implementing the MVVM pattern with built-in support for validation, navigation, dialogs, and asynchronous operations.

NuGet License .NET

Features

  • Base ViewModel classes with lifecycle management and validation
  • Async command support with cancellation, timeout, and execution tracking
  • Dialog service for showing messages, errors, and custom dialogs
  • Navigation service for managing application navigation
  • Specialized ViewModels for common scenarios (Dialog, Blade, Selection, Wizard)
  • Built-in validation using DataAnnotations
  • Automatic busy state management integration
  • Clean separation of UI and business logic
  • Fully testable ViewModels and commands
  • Command cancellation and concurrent execution control
  • Event aggregation through messenger service integration

Installation

Install the package via NuGet:

dotnet add package I-Synergy.Framework.Mvvm

Quick Start

1. Create a Basic ViewModel

using ISynergy.Framework.Core.Abstractions.Services;
using ISynergy.Framework.Mvvm.ViewModels;
using ISynergy.Framework.Mvvm.Commands;
using Microsoft.Extensions.Logging;

public class CustomerViewModel : ViewModel
{
    private readonly ICustomerService _customerService;

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

    public string Email
    {
        get => GetValue<string>();
        set => SetValue(value);
    }

    public AsyncRelayCommand SaveCommand { get; }
    public AsyncRelayCommand LoadCustomersCommand { get; }

    public CustomerViewModel(
        ICommonServices commonServices,
        ICustomerService customerService,
        ILogger<CustomerViewModel> logger)
        : base(commonServices, logger)
    {
        _customerService = customerService;

        Title = "Customer Management";

        SaveCommand = new AsyncRelayCommand(SaveAsync, CanSave);
        LoadCustomersCommand = new AsyncRelayCommand(LoadCustomersAsync);
    }

    public override async Task InitializeAsync()
    {
        await base.InitializeAsync();
        await LoadCustomersCommand.ExecuteAsync(null);
        IsInitialized = true;
    }

    private bool CanSave() => !string.IsNullOrEmpty(Name) && !string.IsNullOrEmpty(Email);

    private async Task SaveAsync()
    {
        try
        {
            CommonServices.BusyService.StartBusy("Saving customer...");

            var customer = new Customer
            {
                Name = Name,
                Email = Email
            };

            await _customerService.SaveAsync(customer);

            await CommonServices.DialogService.ShowInformationAsync(
                "Customer saved successfully",
                "Success");
        }
        catch (Exception ex)
        {
            await CommonServices.DialogService.ShowErrorAsync(ex, "Error");
        }
        finally
        {
            CommonServices.BusyService.StopBusy();
        }
    }

    private async Task LoadCustomersAsync()
    {
        // Load customers logic
    }
}

2. Using Async Commands

using ISynergy.Framework.Mvvm.Commands;
using ISynergy.Framework.Mvvm.Enumerations;

public class DataViewModel : ViewModel
{
    public AsyncRelayCommand<string> SearchCommand { get; }
    public AsyncRelayCommand RefreshCommand { get; }
    public AsyncRelayCommand LongRunningCommand { get; }

    public DataViewModel(ICommonServices commonServices, ILogger<DataViewModel> logger)
        : base(commonServices, logger)
    {
        // Basic async command
        SearchCommand = new AsyncRelayCommand<string>(SearchAsync);

        // Command with CanExecute
        RefreshCommand = new AsyncRelayCommand(RefreshAsync, CanRefresh);

        // Command with timeout (30 seconds)
        LongRunningCommand = new AsyncRelayCommand(
            LongRunningOperationAsync,
            TimeSpan.FromSeconds(30));

        // Command with options
        var downloadCommand = new AsyncRelayCommand(
            DownloadAsync,
            AsyncRelayCommandOptions.AllowConcurrentExecutions);
    }

    private async Task SearchAsync(string query, CancellationToken cancellationToken)
    {
        // Search with cancellation support
        var results = await _service.SearchAsync(query, cancellationToken);
        // Update UI
    }

    private bool CanRefresh() => IsInitialized && !string.IsNullOrEmpty(SomeProperty);

    private async Task RefreshAsync()
    {
        await Task.Delay(1000);
        RefreshCommand.NotifyCanExecuteChanged();
    }

    private async Task LongRunningOperationAsync(CancellationToken cancellationToken)
    {
        // Long running operation with cancellation
        for (int i = 0; i < 100; i++)
        {
            cancellationToken.ThrowIfCancellationRequested();
            await Task.Delay(100, cancellationToken);
        }
    }

    private async Task DownloadAsync()
    {
        // Can be called multiple times concurrently
        await _service.DownloadFileAsync();
    }
}

3. Dialog ViewModel

using ISynergy.Framework.Mvvm.ViewModels;

public class EditCustomerViewModel : ViewModelDialog<Customer>
{
    public string Name
    {
        get => GetValue<string>();
        set => SetValue(value);
    }

    public AsyncRelayCommand SubmitCommand { get; }

    public EditCustomerViewModel(
        ICommonServices commonServices,
        ILogger<EditCustomerViewModel> logger)
        : base(commonServices, logger)
    {
        Title = "Edit Customer";
        SubmitCommand = new AsyncRelayCommand(SubmitAsync);
    }

    public override async Task InitializeAsync()
    {
        await base.InitializeAsync();

        // Load data from SelectedItem
        if (SelectedItem is not null)
        {
            Name = SelectedItem.Name;
        }

        IsInitialized = true;
    }

    private async Task SubmitAsync()
    {
        if (!IsValid)
        {
            await CommonServices.DialogService.ShowWarningAsync(
                "Please fix validation errors",
                "Validation");
            return;
        }

        // Update the selected item
        SelectedItem.Name = Name;

        // Close the dialog with the result
        OnSubmit(SelectedItem);
        await CloseAsync();
    }
}

// Usage in another ViewModel
public async Task EditCustomerAsync(Customer customer)
{
    await CommonServices.DialogService.ShowDialogAsync<EditCustomerWindow, EditCustomerViewModel, Customer>(customer);
}

4. Navigation ViewModel

public class ProductListViewModel : ViewModelNavigation<Product>
{
    private readonly IProductService _productService;

    public ObservableCollection<Product> Products { get; } = new();

    public AsyncRelayCommand<Product> SelectProductCommand { get; }
    public AsyncRelayCommand AddProductCommand { get; }

    public ProductListViewModel(
        ICommonServices commonServices,
        IProductService productService,
        ILogger<ProductListViewModel> logger)
        : base(commonServices, logger)
    {
        _productService = productService;

        Title = "Products";

        SelectProductCommand = new AsyncRelayCommand<Product>(SelectProductAsync);
        AddProductCommand = new AsyncRelayCommand(AddProductAsync);
    }

    public override async Task InitializeAsync()
    {
        await base.InitializeAsync();

        var products = await _productService.GetAllAsync();
        Products.Clear();
        foreach (var product in products)
        {
            Products.Add(product);
        }

        IsInitialized = true;
    }

    private async Task SelectProductAsync(Product product)
    {
        // Navigate to detail view
        await CommonServices.NavigationService.NavigateToAsync<ProductDetailViewModel>(product);
    }

    private async Task AddProductAsync()
    {
        var newProduct = await CommonServices.DialogService
            .ShowDialogAsync<AddProductWindow, AddProductViewModel, Product>();

        if (newProduct is not null)
        {
            Products.Add(newProduct);
        }
    }
}

Architecture

ViewModel Hierarchy

ViewModel (base)
├── ViewModelDialog<TModel>          # For dialog windows with submit/cancel
├── ViewModelNavigation<TModel>      # For navigation views with selection
├── ViewModelBlade<TModel>           # For blade/panel patterns
├── ViewModelBladeView<TModel>       # For blade child views
├── ViewModelSummary<TModel>         # For summary/read-only views
└── ViewModelWizard<TModel>          # For multi-step wizards

Command Types

IRelayCommand
├── RelayCommand                     # Synchronous command without parameter
├── RelayCommand<T>                  # Synchronous command with parameter
├── AsyncRelayCommand                # Async command without parameter
├── AsyncRelayCommand<T>             # Async command with parameter
└── CancelCommand                    # Command for cancellation

Core Services

Dialog Service

public class MyViewModel : ViewModel
{
    public async Task ShowMessagesAsync()
    {
        // Show information
        await CommonServices.DialogService.ShowInformationAsync(
            "Operation completed successfully",
            "Success");

        // Show warning
        await CommonServices.DialogService.ShowWarningAsync(
            "This action cannot be undone",
            "Warning");

        // Show error
        await CommonServices.DialogService.ShowErrorAsync(
            new Exception("Something went wrong"),
            "Error");

        // Show confirmation
        var result = await CommonServices.DialogService.ShowMessageAsync(
            "Are you sure you want to delete this item?",
            "Confirm",
            MessageBoxButtons.YesNo);

        if (result == MessageBoxResult.Yes)
        {
            // Delete item
        }

        // Show custom dialog
        var customer = await CommonServices.DialogService
            .ShowDialogAsync<CustomerDialog, CustomerViewModel, Customer>();
    }
}
public class NavigationExample : ViewModel
{
    public async Task NavigationExamplesAsync()
    {
        // Navigate to view
        await CommonServices.NavigationService.NavigateToAsync<ProductListViewModel>();

        // Navigate with parameter
        await CommonServices.NavigationService.NavigateToAsync<ProductDetailViewModel>(product);

        // Navigate back
        await CommonServices.NavigationService.GoBackAsync();

        // Check if can go back
        bool canGoBack = CommonServices.NavigationService.CanGoBack;
    }
}

Busy Service

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

        var data = await _service.LoadDataAsync();

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

Advanced Features

Command Cancellation

public class CancellationExample : ViewModel
{
    public AsyncRelayCommand LongOperationCommand { get; }

    public CancellationExample(ICommonServices commonServices, ILogger<CancellationExample> logger)
        : base(commonServices, logger)
    {
        LongOperationCommand = new AsyncRelayCommand(LongOperationAsync);
    }

    private async Task LongOperationAsync(CancellationToken cancellationToken)
    {
        for (int i = 0; i < 100; i++)
        {
            // Check cancellation
            cancellationToken.ThrowIfCancellationRequested();

            await Task.Delay(100, cancellationToken);

            // Update progress
            CommonServices.BusyService.UpdateMessage($"Processing {i + 1}/100...");
        }
    }

    public void CancelOperation()
    {
        // Cancel the running command
        LongOperationCommand.Cancel();
    }

    protected override void OnNavigatedFrom()
    {
        // Automatically cancel running commands when navigating away
        base.OnNavigatedFrom();
    }
}

Command Options

// Allow concurrent executions (default: false)
var command1 = new AsyncRelayCommand(
    ExecuteAsync,
    AsyncRelayCommandOptions.AllowConcurrentExecutions);

// Flow exceptions to TaskScheduler (for global error handling)
var command2 = new AsyncRelayCommand(
    ExecuteAsync,
    AsyncRelayCommandOptions.FlowExceptionsToTaskScheduler);

// Combine options
var command3 = new AsyncRelayCommand(
    ExecuteAsync,
    AsyncRelayCommandOptions.AllowConcurrentExecutions |
    AsyncRelayCommandOptions.FlowExceptionsToTaskScheduler);

ViewModel Validation

using System.ComponentModel.DataAnnotations;

public class ValidatedViewModel : ViewModel
{
    [Required(ErrorMessage = "Name is required")]
    [StringLength(100, ErrorMessage = "Name must be less than 100 characters")]
    public string Name
    {
        get => GetValue<string>();
        set => SetValue(value);
    }

    [Required(ErrorMessage = "Email is required")]
    [EmailAddress(ErrorMessage = "Invalid email address")]
    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);
    }

    private async Task SaveAsync()
    {
        // Validate before saving
        if (!IsValid)
        {
            var errors = GetErrors().Select(e => e.ErrorMessage);
            await CommonServices.DialogService.ShowWarningAsync(
                string.Join(Environment.NewLine, errors),
                "Validation Errors");
            return;
        }

        // Save data
    }
}

Wizard ViewModel

public class CustomerWizardViewModel : ViewModelDialogWizard<Customer>
{
    public AsyncRelayCommand NextCommand { get; }
    public AsyncRelayCommand PreviousCommand { get; }

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

    public CustomerWizardViewModel(
        ICommonServices commonServices,
        ILogger<CustomerWizardViewModel> logger)
        : base(commonServices, logger)
    {
        Title = "New Customer Wizard";
        CurrentStep = 1;

        NextCommand = new AsyncRelayCommand(NextStepAsync, CanGoNext);
        PreviousCommand = new AsyncRelayCommand(PreviousStepAsync, CanGoPrevious);
    }

    private bool CanGoNext() => CurrentStep < 3 && IsValid;
    private bool CanGoPrevious() => CurrentStep > 1;

    private async Task NextStepAsync()
    {
        CurrentStep++;
        NextCommand.NotifyCanExecuteChanged();
        PreviousCommand.NotifyCanExecuteChanged();
    }

    private async Task PreviousStepAsync()
    {
        CurrentStep--;
        NextCommand.NotifyCanExecuteChanged();
        PreviousCommand.NotifyCanExecuteChanged();
    }
}

Best Practices

Use AsyncRelayCommand for all asynchronous operations to get automatic busy state management and cancellation support.

Always call base.InitializeAsync() when overriding InitializeAsync() in derived ViewModels.

Commands automatically handle exceptions when using the default options. Set FlowExceptionsToTaskScheduler to handle exceptions globally.

ViewModel Lifecycle

  • Override InitializeAsync() for async initialization
  • Override Cleanup() for resource cleanup
  • Override OnNavigatedFrom() to cancel running commands
  • Override OnNavigatedTo() to reset command states
  • Call MarkAsClean() after saving changes
  • Use IsDirty to track unsaved changes

Command Usage

  • Use AsyncRelayCommand for async operations
  • Use RelayCommand for simple synchronous operations
  • Pass CancellationToken to support cancellation
  • Call NotifyCanExecuteChanged() when CanExecute state changes
  • Use timeout constructors for long-running operations
  • Set AllowConcurrentExecutions for independent operations

Dialog Patterns

  • Inherit from ViewModelDialog<T> for CRUD dialogs
  • Call OnSubmit(result) to return data
  • Call OnCancelled() for cancel operations
  • Check IsValid before submitting
  • Use SelectedItem for editing existing items
  • Inherit from ViewModelNavigation<T> for list views
  • Use NavigationService for view transitions
  • Pass data through navigation parameters
  • Clean up resources in OnNavigatedFrom()
  • Restore state in OnNavigatedTo()

Testing

The MVVM framework is designed for testability:

[Fact]
public async Task SaveCommand_ValidData_SavesCustomer()
{
    // Arrange
    var commonServices = CreateMockCommonServices();
    var customerService = new Mock<ICustomerService>();
    var logger = Mock.Of<ILogger<CustomerViewModel>>();

    var viewModel = new CustomerViewModel(commonServices.Object, customerService.Object, logger);
    viewModel.Name = "John Doe";
    viewModel.Email = "john@example.com";

    // Act
    await viewModel.SaveCommand.ExecuteAsync(null);

    // Assert
    customerService.Verify(s => s.SaveAsync(It.Is<Customer>(c =>
        c.Name == "John Doe" &&
        c.Email == "john@example.com")), Times.Once);
}

[Fact]
public void SaveCommand_InvalidData_CannotExecute()
{
    // Arrange
    var viewModel = new CustomerViewModel(/*...*/);
    viewModel.Name = ""; // Invalid

    // Act
    bool canExecute = viewModel.SaveCommand.CanExecute(null);

    // Assert
    Assert.False(canExecute);
}

[Fact]
public async Task LongOperationCommand_WhenCancelled_StopsExecution()
{
    // Arrange
    var viewModel = new MyViewModel(/*...*/);
    var task = viewModel.LongOperationCommand.ExecuteAsync(null);

    // Act
    await Task.Delay(100);
    viewModel.LongOperationCommand.Cancel();

    // Assert
    await Assert.ThrowsAsync<OperationCanceledException>(() => task);
}

Dependencies

  • I-Synergy.Framework.Core - Core abstractions and services
  • Microsoft.Extensions.Logging - Logging infrastructure

Documentation

For more information about the I-Synergy Framework:

  • I-Synergy.Framework.Core - Core framework components
  • I-Synergy.Framework.UI - Base UI components
  • I-Synergy.Framework.UI.Maui - MAUI UI implementation
  • I-Synergy.Framework.UI.WPF - WPF UI implementation
  • I-Synergy.Framework.UI.Blazor - Blazor UI implementation
  • I-Synergy.Framework.CQRS - CQRS pattern 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 (13)

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

Package Downloads
I-Synergy.Framework.UI

I-Synergy UI Framework for Windows, Linux, Android and WebAssembly

I-Synergy.Framework.Update.WPF

I-Synergy Update Framework for WPF

I-Synergy.Framework.Update.WinUI

I-Synergy Update Framework for Windows

I-Synergy.Framework.Monitoring.Client

I-Synergy Framework SignalR Monitoring Client for .Net 7.0

I-Synergy.Framework.Monitoring.Client.SignalR

I-Synergy Framework SignalR Monitoring Client for .Net Standard 2.0

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 27 11/2/2025
2025.11029.11433.38-preview 113 10/29/2025
2025.11029.10201.38-preview 115 10/29/2025
2025.11027.11947.55-preview 130 10/27/2025
2025.11022.12207.12-preview 110 10/22/2025
2025.11019.12053.37-preview 113 10/19/2025
2025.11016.11750.24-preview 110 10/16/2025
2025.11015.10219.44-preview 122 10/15/2025
2025.11014.10245.12-preview 121 10/14/2025
2025.11012.10130.11-preview 56 10/12/2025
2025.11010.10052.52-preview 121 10/9/2025
2025.11001.12118.13-preview 130 10/1/2025
2025.10925.10144.25-preview 145 9/25/2025
2025.10921.11353.29-preview 162 9/21/2025
2025.10913.11841.29-preview 107 9/13/2025
2025.10912.12351.59-preview 55 9/12/2025
2025.10912.10210.52-preview 123 9/12/2025
2025.10911.10131.43-preview 125 9/10/2025
2025.10910.12340.34-preview 127 9/10/2025
2025.10910.11327.15-preview 123 9/10/2025
2025.10910.11206.45-preview 124 9/10/2025
2025.10910.10230.58-preview 126 9/10/2025
2025.10908.12343.47-preview 194 9/8/2025
2025.10904.12337.35-preview 207 9/4/2025
2025.10904.12245.51-preview 207 9/4/2025
2025.10904.11425.5-preview 210 9/4/2025
2025.10904.10323.39-preview 205 9/4/2025
2025.10826.11425.3-preview 258 8/26/2025
2025.10825.12350.9-preview 208 8/25/2025
2025.10810.10248-preview 147 8/10/2025
2025.10809.10146.35-preview 182 8/9/2025
2025.10806.12031.49-preview 269 8/6/2025
2025.10806.11955.54-preview 270 8/6/2025
2025.10806.11433.24-preview 274 8/6/2025
2025.10709.10105.39-preview 193 7/8/2025
2025.10707.12320.3-preview 202 7/7/2025
2025.10706.11957.9-preview 194 7/6/2025
2025.10702.11752.47-preview 176 7/2/2025
2025.10702.11256.17-preview 207 7/2/2025
2025.10702.11119.10-preview 200 7/2/2025
2025.10702.10000.31-preview 197 7/1/2025
2025.10701.11524.1-preview 199 7/1/2025
2025.10701.11310.13-preview 185 7/1/2025
2025.10630.12022.58-preview 204 6/30/2025
2025.10612.12134.8-preview 360 6/12/2025
2025.10611.12313.53-preview 331 6/11/2025
2025.10603.10159.54-preview 217 6/3/2025
2025.10602.11908.9-preview 215 6/2/2025
2025.10601.10124.29-preview 179 5/31/2025
2025.10531.12235.29-preview 155 5/31/2025
2025.10530.10121.50-preview 184 5/29/2025
2025.10527.12202.4-preview 221 5/27/2025
2025.10526.12034.25-preview 195 5/26/2025
2025.10521.11828.30-preview 210 5/21/2025
2025.10520.11715.6-preview 222 5/20/2025
2025.10520.11515.16-preview 213 5/20/2025
2025.10518.12303.43-preview 197 5/18/2025
2025.10518.11257.36-preview 213 5/18/2025
2025.10517.12347.27-preview 182 5/17/2025
2025.10517.12003.6-preview 164 5/17/2025
2025.10516.11720.13-preview 223 5/16/2025
2025.10514.12334.2-preview 307 5/14/2025
2025.10514.10015.27-preview 305 5/13/2025
2025.10511.11032.32-preview 235 5/11/2025
2025.10413.11530 269 4/13/2025
2025.10413.11434.33-preview 255 4/13/2025
2025.10413.10205.50-preview 191 4/13/2025
2025.10412.11526.4-preview 174 4/12/2025
2025.10412.10141 185 4/12/2025
2025.10411.11811.23-preview 173 4/11/2025
2025.10411.11645.1-preview 194 4/11/2025
2025.10410.11458.35-preview 213 4/10/2025
2025.10405.10143.28-preview 175 4/5/2025
2025.10403.12208.1-preview 212 4/3/2025
2025.10403.11954.16-preview 213 4/3/2025
2025.10401.11908.24-preview 202 4/1/2025
2025.10401.11559.45-preview 221 4/1/2025
2025.10331.12215.59-preview 238 3/31/2025
2025.10331.12130.34-preview 233 3/31/2025
2025.10331.10056.40-preview 218 3/30/2025
2025.10328.10150.21-preview 235 3/28/2025
2025.10323.11359-preview 370 3/23/2025
2025.10320.11800 250 3/20/2025
2025.10320.11616.45-preview 214 3/20/2025
2025.10320.10000 241 3/19/2025
2025.10319.12311.26-preview 230 3/19/2025
2025.10319.12238.6-preview 229 3/19/2025
2025.10319.12057.59-preview 251 3/19/2025
2025.10318.10055 236 3/18/2025
2025.10317.11728.13-preview 244 3/17/2025
2025.10317.11201.3-preview 239 3/17/2025
2025.10315.11523.14-preview 158 3/15/2025
2025.10305.12342 377 3/5/2025
2025.10305.12321.9-preview 277 3/5/2025
2025.10301.12313 273 3/1/2025
2025.10301.12129.38-preview 185 3/1/2025
2025.10221.10043.29-preview 223 2/21/2025
2025.1051.1246 214 2/20/2025
2025.1051.44.54-preview 207 2/20/2025
2025.1044.1 268 2/13/2025
2025.1044.0.2-preview 195 2/13/2025
2025.1043.0.2-preview 199 2/12/2025
2025.1041.0.1-preview 195 2/10/2025
2025.1038.1 252 2/7/2025
2025.1038.0.1-preview 196 2/7/2025
2025.1035.1 282 2/4/2025
2025.1035.0.1-preview 199 2/4/2025
2025.1034.1 274 2/3/2025
2025.1034.0.1-preview 209 2/3/2025
2025.1033.0.5-preview 192 2/2/2025
2025.1033.0.3-preview 212 2/2/2025
2025.1033.0.2-preview 199 2/2/2025
2025.1033.0.1-preview 206 2/2/2025
2025.1025.1 229 1/25/2025
2025.1025.0.1-preview 189 1/25/2025
2025.1021.1 239 1/21/2025
2025.1021.0.1-preview 178 1/21/2025
2025.1020.1 228 1/20/2025
2025.1020.0.3-preview 183 1/20/2025
2025.1020.0.1-preview 180 1/20/2025
2025.1018.0.7-preview 178 1/18/2025
2025.1018.0.5-preview 186 1/18/2025
2025.1018.0.4-preview 180 1/18/2025
2025.1017.0.2-preview 183 1/17/2025
2025.1017.0.1-preview 185 1/17/2025
2025.1016.0.1-preview 197 1/16/2025
2025.1010.1 233 1/10/2025
2025.1010.0.1-preview 191 1/9/2025
2025.1009.0.3-preview 195 1/9/2025
2025.1007.1 252 1/7/2025
2025.1007.0.5-preview 181 1/7/2025
2025.1007.0.3-preview 207 1/7/2025
2025.1006.1 246 1/7/2025
2025.1005.1 255 1/5/2025
2025.1005.0.2-preview 200 1/5/2025
2025.1004.1 243 1/4/2025
2024.1366.1 215 12/31/2024
2024.1366.0.2-preview 243 12/31/2024
2024.1366.0.1-preview 215 12/31/2024
2024.1365.0.2-preview 220 12/30/2024
2024.1365.0.1-preview 221 12/30/2024
2024.1361.0.2-preview 201 12/26/2024
2024.1353.0.1-preview 209 12/18/2024
2024.1352.0.3-preview 210 12/17/2024
2024.1352.0.2-preview 212 12/17/2024
2024.1352.0.1-preview 192 12/17/2024
2024.1351.1 233 12/16/2024
2024.1351.0.3-preview 225 12/16/2024
2024.1350.1 226 12/15/2024
2024.1343.1 249 12/8/2024
2024.1339.1 240 12/4/2024
2024.1336.1 215 12/1/2024
2024.1332.1 213 11/27/2024
2024.1330.1 232 11/25/2024
2024.1328.1 240 11/23/2024
2024.1325.1 243 11/20/2024
2024.1323.1 250 11/18/2024
2024.1316.1 150 11/11/2024
2024.1307.1 100 11/2/2024
2024.1300.1 128 10/26/2024
2024.1294.1 150 10/20/2024
2024.1290.1 253 10/16/2024
2024.1283.1 345 10/8/2024
2024.1282.1 252 10/8/2024
2024.1278.1 319 10/4/2024
2024.1277.1 260 10/3/2024
2024.1275.2 235 10/1/2024
2024.1275.1 205 10/1/2024
2024.1274.1 229 9/30/2024
2024.1263.1 205 9/19/2024
2024.1261.1 274 9/17/2024
2024.1258.1 220 9/13/2024
2024.1257.1 237 9/13/2024
2024.1256.1 228 9/12/2024
2024.1254.1 235 9/10/2024
2024.1250.1 252 9/6/2024
2024.1249.1 233 9/5/2024
2024.1246.1 267 9/2/2024
2024.1245.1 215 9/1/2024
2024.1237.1 253 8/24/2024
2024.1235.0.1-preview 238 8/23/2024
2024.1230.1 239 8/18/2024
2024.1229.1 248 8/16/2024
2024.1228.1 261 8/15/2024
2024.1222.1 250 8/8/2024
2024.1221.1 239 8/7/2024
2024.1221.0.2-preview 188 8/8/2024
2024.1221.0.1-preview 209 8/8/2024
2024.1220.1 234 8/7/2024
2024.1219.0.2-preview 210 8/6/2024
2024.1219.0.1-preview 197 8/6/2024
2024.1217.0.2-preview 192 8/4/2024
2024.1217.0.1-preview 202 8/4/2024
2024.1216.0.2-preview 197 8/3/2024
2024.1216.0.1-preview 179 8/3/2024
2024.1208.0.1-preview 197 7/26/2024
2024.1207.0.7-preview 202 7/25/2024
2024.1207.0.5-preview 165 7/25/2024
2024.1166.1 230 6/14/2024
2024.1165.1 201 6/13/2024
2024.1164.1 192 6/12/2024
2024.1162.1 187 6/10/2024
2024.1158.1 234 6/6/2024
2024.1156.1 215 6/4/2024
2024.1152.1 282 5/31/2024
2024.1151.1 223 5/29/2024
2024.1150.2 221 5/29/2024
2024.1150.1 214 5/29/2024
2024.1149.1 199 5/28/2024
2024.1147.1 222 5/26/2024
2024.1146.2 220 5/25/2024
2024.1146.1 215 5/25/2024
2024.1145.1 236 5/24/2024
2024.1135.2 221 5/14/2024
2024.1135.1 214 5/14/2024
2024.1134.1 225 5/13/2024
2024.1130.1 228 5/9/2024
2024.1123.1 204 5/2/2024
2024.1121.1 219 4/30/2024
2024.1114.1 225 4/22/2024
2024.1113.0.5-preview 212 4/22/2024
2024.1113.0.3-preview 221 4/22/2024
2024.1113.0.2-preview 208 4/22/2024
2024.1113.0.1-preview 212 4/22/2024
2024.1108.0.1-preview 209 4/17/2024
2024.1107.0.1-preview 207 4/16/2024
2024.1094.2 236 4/3/2024
2024.1094.1 200 4/3/2024
2024.1092.1 249 4/1/2024
2024.1088.1 252 3/28/2024
2024.1085.1 247 3/25/2024
2024.1080.2 239 3/20/2024
2024.1080.1 269 3/20/2024
2024.1078.1 223 3/18/2024
2024.1077.1 263 3/17/2024
2024.1073.1 239 3/13/2024
2024.1070.1 259 3/10/2024
2024.1069.1 261 3/9/2024
2024.1068.1 272 3/8/2024
2024.1066.2 260 3/6/2024
2024.1066.1 260 3/6/2024
2024.1065.1 243 3/5/2024
2024.1065.0.1-preview 230 3/5/2024
2024.1063.2 241 3/3/2024
2024.1063.1 271 3/3/2024
2024.1062.1 283 3/2/2024
2024.1061.2 261 3/1/2024
2024.1061.1 238 3/1/2024
2024.1060.2 254 2/29/2024
2024.1060.1 256 2/29/2024
2024.1060.0.5-preview 207 2/29/2024
2024.1060.0.3-preview 231 2/29/2024
2024.1059.0.1-preview 216 2/28/2024
2024.1058.1 255 2/27/2024
2024.1056.1 279 2/25/2024
2024.1055.1 302 2/24/2024
2024.1052.1 286 2/21/2024
2024.1050.2 310 2/20/2024
2024.1050.1 287 2/19/2024
2024.1049.1 289 2/18/2024
2024.1048.1 277 2/17/2024
2024.1047.1 283 2/16/2024
2024.1035.1 375 2/4/2024
2024.1034.2 341 2/3/2024
2024.1029.1 727 1/29/2024
2024.1023.1 735 1/23/2024
2024.1022.1 663 1/22/2024
2024.1020.1 608 1/20/2024
2024.1019.1 621 1/19/2024
2024.1017.1 631 1/17/2024
2024.1012.1 660 1/12/2024
2024.1010.1 676 1/10/2024
2024.1008.1 714 1/8/2024
2024.1007.1 752 1/7/2024
2024.1005.1 691 1/5/2024
2024.1004.1 694 1/4/2024
2023.1365.1 763 12/31/2023
2023.1362.1 684 12/28/2023
2023.1361.1 726 12/27/2023
2023.1359.1 779 12/25/2023
2023.1358.1 794 12/24/2023
2023.1357.1 618 12/23/2023
2023.1342.1 857 12/8/2023
2023.1336.1 851 12/2/2023
2023.1332.1 829 11/28/2023
2023.1330.1 782 11/26/2023
2023.1325.1 864 11/21/2023
2023.1323.1 387 11/19/2023
2023.1320.1 361 11/17/2023
2023.1318.1 828 11/15/2023
2023.1317.1 118 11/13/2023
2023.1307.1 228 11/3/2023
2023.1305.1 152 11/1/2023
2023.1304.1 122 10/31/2023
2023.1294.1 152 10/21/2023
2023.1290.1 139 10/16/2023
2023.1289.1 147 10/16/2023
2023.1284.1 159 10/11/2023
2023.1276.1 146 10/3/2023
2023.1275.1 158 10/2/2023
2023.1272.1 165 9/29/2023
2023.1269.1 148 9/26/2023
2023.1242.1 969 8/30/2023
2023.1231.1 1,061 8/19/2023
2023.1229.1 1,091 8/17/2023
2023.1228.1 1,026 8/16/2023
2023.1227.1 1,012 8/15/2023
2023.1224.2 1,057 8/12/2023
2023.1224.1 1,112 8/12/2023
2023.1213.2 1,168 8/1/2023
2023.1213.1 1,119 8/1/2023
2023.1209.1 1,130 7/27/2023
2023.1201.1 1,159 7/20/2023
2023.1197.1 1,193 7/16/2023
2023.1178.1 1,132 6/27/2023
2023.1175.1 1,157 6/24/2023
2023.1174.1 1,148 6/22/2023
2023.1169.1 1,162 6/18/2023
2023.1165.1 1,117 6/14/2023
2023.1161.1 1,155 6/11/2023
2023.1159.1 1,131 6/7/2023
2023.1157.1 1,241 6/6/2023
2023.1146.1 1,188 5/27/2023
2023.1139.1 1,201 5/19/2023
2023.1137.1 1,186 5/17/2023
2023.1136.1 1,270 5/16/2023
2023.1118.1 1,305 4/28/2023
2023.1111.1 1,245 4/21/2023
2023.1110.1 1,276 4/20/2023
2023.1105.1 1,200 4/15/2023
2023.1103.1 1,170 4/13/2023
2023.1102.1 1,318 4/12/2023
2023.1101.1 1,318 4/11/2023
2023.1090.1 1,377 3/31/2023
2023.1089.1 1,331 3/30/2023
2023.1088.1 1,286 3/29/2023
2023.1082.1 1,278 3/23/2023
2023.1078.1 1,444 3/19/2023
2023.1070.1 1,388 3/11/2023
2023.1069.1 1,311 3/10/2023
2023.1064.1 1,396 3/5/2023
2023.1060.1 1,474 3/1/2023
2023.1057.1 1,378 2/26/2023
2023.1046.1 1,454 2/15/2023
2023.1043.2 1,526 2/12/2023
2023.1043.1 1,424 2/12/2023
2023.1042.1 1,521 2/11/2023
2023.1041.1 1,449 2/10/2023
2023.1039.1 1,483 2/8/2023
2023.1036.1 1,411 2/5/2023
2023.1035.1 1,441 2/4/2023
2023.1033.1 1,533 2/2/2023
2023.1030.1 1,492 1/30/2023
2023.1028.1 1,470 1/28/2023
2023.1026.1 1,484 1/26/2023
2023.1025.1 1,459 1/25/2023
2023.1024.1 1,540 1/24/2023
2023.1023.1 1,532 1/23/2023
2022.1319.1 1,817 11/15/2022
2022.1309.1 1,867 11/5/2022
2022.1307.1 1,853 11/3/2022
2022.1295.1 1,955 10/22/2022
2022.1290.1 2,114 10/17/2022
2022.1289.2 2,023 10/16/2022
2022.1289.1 2,044 10/16/2022
2022.1283.1 2,036 10/10/2022
2022.1282.1 2,076 10/9/2022
2022.1278.1 2,049 10/5/2022
2022.1272.2 2,128 9/29/2022
2022.1272.1 2,081 9/29/2022
2022.1271.1 2,192 9/28/2022
2022.1266.1 2,276 9/23/2022
2022.1259.1 2,218 9/16/2022
2022.1257.1 2,273 9/14/2022
2022.1250.1 2,209 9/7/2022
2022.1250.0.2-preview 968 9/7/2022
2022.1249.0.2-preview 989 9/6/2022
2022.1249.0.1-preview 1,013 9/6/2022
2022.1197.1 1,975 7/16/2022
2022.1196.1 1,966 7/15/2022
2022.1194.1 2,086 7/13/2022
2022.1182.1 1,996 7/1/2022
2022.1178.1 2,007 6/27/2022
2022.1166.1 1,966 6/15/2022
2022.1157.1 2,029 6/6/2022
2022.1150.1 1,946 5/30/2022
2022.1149.1 1,972 5/29/2022
2022.1144.1 1,978 5/24/2022
0.6.2 2,076 5/23/2022
0.6.1 2,046 5/23/2022
0.6.0 2,051 5/14/2022
0.5.3 2,092 5/8/2022
0.5.2 2,047 5/1/2022
0.5.1 2,076 5/1/2022
0.5.0 2,118 4/23/2022
0.4.1 2,065 4/15/2022
0.4.0 2,073 4/9/2022
0.3.3 2,074 4/8/2022
0.3.2 2,105 4/1/2022
0.3.1 2,123 3/29/2022
0.3.0 2,011 3/28/2022
0.2.3 2,059 3/28/2022
0.2.2 2,017 3/25/2022
0.2.1 2,027 3/21/2022
0.2.0 1,961 3/18/2022