Accelergreat 5.0.0-beta.eadb69d

Prefix Reserved
This is a prerelease version of Accelergreat.
dotnet add package Accelergreat --version 5.0.0-beta.eadb69d
                    
NuGet\Install-Package Accelergreat -Version 5.0.0-beta.eadb69d
                    
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="Accelergreat" Version="5.0.0-beta.eadb69d" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Accelergreat" Version="5.0.0-beta.eadb69d" />
                    
Directory.Packages.props
<PackageReference Include="Accelergreat" />
                    
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 Accelergreat --version 5.0.0-beta.eadb69d
                    
#r "nuget: Accelergreat, 5.0.0-beta.eadb69d"
                    
#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 Accelergreat@5.0.0-beta.eadb69d
                    
#: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=Accelergreat&version=5.0.0-beta.eadb69d&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Accelergreat&version=5.0.0-beta.eadb69d&prerelease
                    
Install as a Cake Tool

Accelergreat

Core package containing the contracts and orchestration primitives that other Accelergreat integration packages build on.

What this package provides

  • environment lifecycle contracts
  • component registration and activation contracts
  • shared pipeline data interfaces used by component packages

Typical usage

Most test projects consume this indirectly through:

  • Accelergreat.Xunit or Accelergreat.Xunit3
  • one or more component packages (Accelergreat.EntityFramework.*, Accelergreat.Web)

Direct usage scenarios

Reference Accelergreat directly if you are:

  • implementing custom components
  • integrating Accelergreat into a custom test harness
  • sharing core contracts across package boundaries

Example: custom component contract usage

public class CustomComponent : IAccelergreatComponent
{
    public Task InitializeAsync(IAccelergreatEnvironmentPipelineData environmentData)
    {
        return Task.CompletedTask;
    }

    public Task ResetAsync()
    {
        return Task.CompletedTask;
    }

    public ValueTask DisposeAsync()
    {
        return ValueTask.CompletedTask;
    }
}

FAQ

  • Should I install this package directly in test projects?
    • Usually you install Accelergreat.Xunit or Accelergreat.Xunit3 plus component packages; this package comes transitively.
  • When do I use this package directly?
    • When building custom integrations/components against Accelergreat core contracts.
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Accelergreat:

Package Downloads
Accelergreat.EntityFramework

Accelergreat Entity Framework testing tools. Accelergreat is an integration testing package that helps to simplify and speed up the writing of integration tests, as well as taking away the challenging task of managing external dependencies.

Accelergreat.Xunit

Accelergreat xunit testing tools. Accelergreat is an integration testing package that helps to simplify and speed up the writing of integration tests, as well as taking away the challenging task of managing external dependencies.

Accelergreat.Web

Accelergreat web app testing tools. Accelergreat is an integration testing package that helps to simplify and speed up the writing of integration tests, as well as taking away the challenging task of managing external dependencies.

Accelergreat.Xunit3

Accelergreat xunit v3 testing tools. Accelergreat is an integration testing package that helps to simplify and speed up the writing of integration tests, as well as taking away the challenging task of managing external dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.0-beta.eadb69d 53 2/25/2026
4.0.2 414 7/16/2025
4.0.1 360 7/15/2025
4.0.0 495 6/16/2025
4.0.0-alpha.c246138 153 7/15/2025
4.0.0-alpha.8c58a78 161 7/15/2025
3.1.1-beta 798 11/6/2024
3.1.0-beta 172 11/6/2024
3.0.0 5,101 7/13/2024
3.0.0-beta.2 737 2/12/2024
3.0.0-beta.1 138 2/9/2024
2.3.0-beta 882 1/23/2024
2.2.7 3,744 9/1/2023
2.2.6-beta 587 9/1/2023
2.2.5-beta 585 9/1/2023
2.2.4 670 9/1/2023
2.2.3-beta 1,430 3/26/2023
2.2.2-beta 740 3/26/2023
2.2.1-beta 736 3/25/2023
2.2.0-beta 702 3/25/2023
Loading failed