ExcelDna.Testing 1.10.0-preview5

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

ExcelDna.Testing

ExcelDna.Testing helps run automated tests against Excel workbooks and Excel-DNA add-ins. Tests use xUnit and can run out-of-process by driving Excel through COM, or in-process inside Excel when access to the Excel C API is needed.

using Xunit;

[assembly: Xunit.TestFramework("Xunit.ExcelTestFramework", "ExcelDna.Testing")]

public class Tests
{
    [ExcelFact(OutOfProcess = true)]
    public void CanStartExcel()
    {
        Assert.Equal("16.0", ExcelDna.Testing.Util.Application.Version);
    }
}

Use this package for integration tests where the behavior depends on a real Excel instance, loaded add-ins, workbook state, ribbon commands, or Excel object model interaction.

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed.  net9.0-windows was computed.  net10.0-windows was computed. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on ExcelDna.Testing:

Repository Stars
Excel-DNA/ExcelDna
Excel-DNA - Free and easy .NET for Excel. This repository contains the core Excel-DNA library.
getcellm/cellm
Use LLMs in Excel formulas
Excel-DNA/Samples
Various sample projects and snippets related to Excel-DNA
Version Downloads Last Updated
1.10.0-preview5 47 7/6/2026
1.10.0-preview4 324 2/22/2026
1.10.0-preview1 127 2/14/2026
1.9.0 2,717 9/18/2025
1.9.0-rc6 274 9/4/2025
1.9.0-rc5 248 8/17/2025
1.9.0-rc4 173 8/15/2025
1.9.0-rc3 304 7/14/2025
1.9.0-rc2 657 7/1/2025
1.9.0-rc1 275 6/23/2025
1.9.0-beta2 856 4/5/2025
1.9.0-beta1 464 2/2/2025
1.9.0-alpha3 1,603 11/16/2024
1.9.0-alpha2 383 8/14/2024
1.8.0 5,813 5/16/2024
1.8.0-rc 254 5/6/2024
1.8.0-alpha3 281 3/10/2024
1.8.0-alpha2 313 1/3/2024
1.8.0-alpha1 258 12/21/2023
1.7.0 1,721 11/27/2023
Loading failed