.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Siegfried Pammer 48b8684646 Launch ILSpy from VS Code via dotrush, with a plain fallback 1 month ago
.github Bump github/codeql-action from 4.37.4 to 4.37.6 (#3977) 1 month ago
.vscode Launch ILSpy from VS Code via dotrush, with a plain fallback 1 month ago
BuildTools Reduce verbosity of commit hook. 1 month ago
ICSharpCode.BamlDecompiler NuGet August 2026 Updates (#3981) 1 month ago
ICSharpCode.Decompiler Use pattern expression instead 1 month ago
ICSharpCode.Decompiler.Generators Document the two roles of the language version in the settings API 1 month ago
ICSharpCode.Decompiler.PowerShell NuGet August 2026 Updates (#3981) 1 month ago
ICSharpCode.Decompiler.TestRunner Carry all RIDs in the decompiler-test lock files 3 months ago
ICSharpCode.Decompiler.Tests Fix #3894: keep lambda parameter typing consistent 1 month ago
ICSharpCode.ILSpyCmd NuGet August 2026 Updates (#3981) 1 month ago
ICSharpCode.ILSpyCmd.Tests NuGet August 2026 Updates (#3981) 1 month ago
ICSharpCode.ILSpyX Stream the search's assembly walk instead of materializing it 1 month ago
ILSpy Stream the search's assembly walk instead of materializing it 1 month ago
ILSpy-tests@4ccc3f0108 Bump ILSpy-tests: isolate fixtures from host warnings-as-errors 3 months ago
ILSpy.AddIn.VS2022 Reimplement cross-platform single-instance handling 2 months ago
ILSpy.BamlDecompiler.Tests NuGet August 2026 Updates (#3981) 1 month ago
ILSpy.BamlDecompiler.Tests.Windows NuGet August 2026 Updates (#3981) 1 month ago
ILSpy.Installer Avalonia 12.1.1 and Dock 12.1.0 2 months ago
ILSpy.ReadyToRun NuGet August 2026 Updates (#3981) 1 month ago
ILSpy.Tests Stream the search's assembly walk instead of materializing it 1 month ago
ILSpy.Tests.Windows NuGet August 2026 Updates (#3981) 1 month ago
TestFixtures.Resources Add license headers to source files that lacked them 2 months ago
TestPlugin NuGet August 2026 Updates (#3981) 1 month ago
doc Document how to collect event traces 2 months ago
.editorconfig dev: fix editorconfig parsing on some editors 3 months ago
.git-blame-ignore-revs #2128: Add .git-blame-ignore-revs 6 years ago
.gitattributes Extract implicit-span-conversion-related logic in HandleImplicitConversion into separate method. 1 month ago
.gitignore Avalonia 12.1 2 months ago
.gitmodules update submodule 1 year ago
.tgitconfig
CLAUDE.md Drop the fixup/autosquash rule from the commit workflow 1 month ago
CONTRIBUTING.md CONTRIBUTING.md for the AI era 2 months ago
Directory.Build.props Treat warnings as errors repo-wide 3 months ago
Directory.Packages.props NuGet August 2026 Updates (#3981) 1 month ago
ILSpy.Desktop.slnf ilspycmd: add --member for single-member decompilation 2 months ago
ILSpy.Installer.sln dev: Strip BOM mark from text files 1 year ago
ILSpy.VSExtensions.slnx Migrate the VS extension to an SDK-style VSIX (dotnet build) and retire the VS2017/2019 add-in (#3808) 3 months ago
ILSpy.XPlat.slnf ilspycmd: add --member for single-member decompilation 2 months ago
ILSpy.sln ilspycmd: add --member for single-member decompilation 2 months ago
LICENSE Move license.txt to root folder LICENSE file 2 years ago
NuGet.config Fix pre-commit hook failure when package source mapping is active 1 month ago
README.md NuGet August 2026 Updates (#3981) 1 month ago
SECURITY.md Create SECURITY.md 2 years ago
build.ps1 Set OpenSSL SHA1 flag in build scripts 3 months ago
clean.ps1 Set OpenSSL SHA1 flag in build scripts 3 months ago
decompiler-nuget-demos.verso Fix #3664: Move ipynb to Verso and adapt to v11 API surface 1 month ago
global.json .NET 11 for Tests (#3695) 5 months ago
publish.ps1 Set OpenSSL SHA1 flag in build scripts 3 months ago
publishlocaldev.ps1 Set OpenSSL SHA1 flag in build scripts 3 months ago
restore.ps1 Set OpenSSL SHA1 flag in build scripts 3 months ago
updatedeps.ps1 Set OpenSSL SHA1 flag in build scripts 3 months ago

README.md

ILSpy NuGet Build ILSpy Mastodon Bluesky ILSpy VS extension

ILSpy is the open-source, cross-platform .NET assembly browser and decompiler. The desktop UI runs on Windows, Linux, and macOS (built on Avalonia).

Download: latest release | latest CI build (master) | Microsoft Store (RTM versions only)

Decompiler Frontends

Aside from the cross-platform desktop UI ILSpy (downloadable via Releases, see also plugins), the following other frontends are available:

  • Visual Studio 2022/2026 ship with decompilation support for F12 enabled by default (using our engines v8.2 and v9.1 respectively).
  • Our Visual Studio 2022 extension marketplace (works with VS 2026 as well)
  • Our Visual Studio Code Extension repository | marketplace | open-vsx
  • Our dotnet tool for Linux/Mac/Windows - check out ILSpyCmd in this repository | dotnet tool install
  • C# for Visual Studio Code ships with decompilation support as well. To enable, activate the setting "Enable Decompilation Support".
  • In Visual Studio 2019, you have to manually enable F12 support. Go to Tools / Options / Text Editor / C# / Advanced and check "Enable navigation to decompiled source"
  • Our ICSharpCode.Decompiler and ILSpyX NuGet packages for your own projects
  • Our Linux/Mac/Windows PowerShell cmdlets in this repository

Features

  • Decompilation to C# (check out the language support status)
  • Whole-project decompilation
  • Open from NuGet feed, open from running process in addition to disk and GAC (Windows-only)
  • Search for types/methods/properties (learn about the options)
  • Hyperlink-based type/method/property navigation, bookmarks
  • Base/Derived types navigation, history
  • Assembly metadata explorer (feature walkthrough)
  • BAML to XAML decompiler, !AvaloniaResources support
  • ReadyToRun binary support for .NET Core (see the tutorial)
  • Extensible via plugins
  • Additional features in DEBUG builds (for the devs)

License

ILSpy is distributed under the MIT License. Please see the About doc for details, as well as third party notices for included open-source libraries.

How to build

Windows:

  • Make sure Windows PowerShell (at least version) 5.0 or PowerShell 7+ is installed.
  • Clone the ILSpy repository using git.
  • Execute git submodule update --init --recursive to download the ILSpy-Tests submodule (used by some test cases).
  • Install Visual Studio (documented version: 18.0/2026). You need the following workload components:
    • Workload ".NET Desktop Development". This workload includes the .NET Framework 4.8 SDK and the .NET Framework 4.7.2 targeting pack, as well as the .NET 10.0 SDK (ILSpy.csproj targets .NET 10.0, but we have net472 projects too). Our unit tests require .NET 11.0 SDK.
    • Workload "Visual Studio extension development" (Note: ILSpy.VSExtensions.slnx is separate from ILSpy.sln and thus this workload is optional)
    • Individual Component "MSVC v143 - VS 2022 C++ x64/x86 build tools" (or similar)
      • The VC++ toolset is optional; if present it is used for editbin.exe to modify the stack size used by ILSpy.exe from 1MB to 16MB, because the decompiler makes heavy use of recursion, where small stack sizes lead to problems in very complex methods.
  • Open ILSpy.sln in Visual Studio.
    • NuGet package restore will automatically download further dependencies
    • Run project "ILSpy" for the ILSpy UI
    • Use the Visual Studio "Test Explorer" to see/run the tests
    • If you are only interested in a specific subset of ILSpy, you can also use
      • ILSpy.Desktop.slnf: for the cross-platform Avalonia UI and its tests
      • ILSpy.XPlat.slnf: for the cross-platform CLI (ilspycmd) or PowerShell cmdlets
      • ILSpy.VSExtensions.slnx: for the Visual Studio extensions

Note: Visual Studio includes a version of the .NET SDK that is managed by the Visual Studio installer - once you update, it may get upgraded too. Please note that ILSpy is only compatible with the .NET 11.0 SDK and Visual Studio will refuse to load some projects in the solution (and unit tests will fail). If this problem occurs, please manually install the .NET 11.0 SDK from here.

Unix / Mac:

  • Make sure .NET 10.0 SDK (for run) and .NET 11.0 SDK (for tests) is installed.
  • Make sure PowerShell is installed (formerly known as PowerShell Core)
  • Clone the repository using git.
  • Execute git submodule update --init --recursive to download the ILSpy-Tests submodule (used by some test cases).
  • Use dotnet build ILSpy.Desktop.slnf to build the cross-platform Avalonia desktop UI; run it with dotnet run --project ILSpy.
  • Use dotnet build ILSpy.XPlat.slnf to build only the CLI tool (ilspycmd) and PowerShell cmdlets.

How to contribute

Current and past contributors.

Privacy Policy for ILSpy

ILSpy does not collect any personally identifiable information, nor does it send user files to 3rd party services. ILSpy does not use any APM (Application Performance Management) service to collect telemetry or metrics.