ExcelDna.IntelliSense 1.10.0-preview5

Prefix Reserved
This is a prerelease version of ExcelDna.IntelliSense.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package ExcelDna.IntelliSense --version 1.10.0-preview5
                    
NuGet\Install-Package ExcelDna.IntelliSense -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.IntelliSense" 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.IntelliSense" Version="1.10.0-preview5" />
                    
Directory.Packages.props
<PackageReference Include="ExcelDna.IntelliSense" />
                    
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.IntelliSense --version 1.10.0-preview5
                    
#r "nuget: ExcelDna.IntelliSense, 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.IntelliSense@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.IntelliSense&version=1.10.0-preview5&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=ExcelDna.IntelliSense&version=1.10.0-preview5&prerelease
                    
Install as a Cake Tool

ExcelDna.IntelliSense

ExcelDna.IntelliSense adds in-sheet function help for Excel user-defined functions. It displays function descriptions and argument help while users type formulas, using the metadata supplied by ExcelFunction and ExcelArgument attributes.

[ExcelFunction(Description = "Adds two numbers.")]
public static double AddThem(
    [ExcelArgument(Description = "The first number.")] double x,
    [ExcelArgument(Description = "The second number.")] double y)
{
    return x + y;
}

Install this package when you want IntelliSense support as part of a managed Excel-DNA add-in. For VBA workbooks or for add-ins where you prefer a separately deployed helper, use the standalone ExcelDna.IntelliSense .xll from the project releases.

Native AOT add-ins should not reference this package directly. Deploy the standalone IntelliSense .xll alongside the Native AOT add-in instead.

More usage notes and examples are available at https://github.com/Excel-DNA/IntelliSense.

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 net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  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 (1)

Showing the top 1 NuGet packages that depend on ExcelDna.IntelliSense:

Package Downloads
ExcelDna.IntelliSense.Abstractions

ExcelDna.IntelliSense.Abstractions is a library that abstracts ExcelDna.IntelliSense classes such as `IntelliSenseServer`, so you can easily mock them and write unit tests against your Excel add-ins built with Excel-DNA.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on ExcelDna.IntelliSense:

Repository Stars
Excel-DNA/Samples
Various sample projects and snippets related to Excel-DNA
Version Downloads Last Updated
1.10.0-preview6 32 9/25/2026
1.10.0-preview5 329 7/6/2026
1.10.0-preview4 310 2/22/2026
1.10.0-preview1 138 2/14/2026
1.9.0 53,388 9/18/2025
1.9.0-rc6 376 9/4/2025
1.9.0-rc5 398 8/17/2025
1.9.0-rc4 204 8/15/2025
1.9.0-rc3 611 7/14/2025
1.9.0-rc2 728 7/1/2025
1.9.0-rc1 328 6/23/2025
1.9.0-beta2 783 4/5/2025
1.9.0-beta1 608 2/2/2025
1.9.0-alpha3 727 11/16/2024
1.9.0-alpha2 7,268 8/14/2024
1.8.0 82,821 5/16/2024
1.8.0-rc 629 5/6/2024
1.8.0-alpha3 1,097 3/10/2024
1.8.0-alpha2 1,480 1/3/2024
1.7.1-test1 232 4/11/2024
Loading failed