Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
143,389
Downloads of v 2.2.0.1707:
379
Last Update:
18 Feb 2015
Package Maintainer(s):
Software Author(s):
- Daniel Grunwald
- David Srbecky
- Ed Harvey
- Siegfried Pammer
- Artur Zgodzinski
Tags:
dotnet decompiler- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

ILSpy
This is not the latest version of ILSpy available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
143,389
Downloads of v 2.2.0.1707:
379
Maintainer(s):
Software Author(s):
- Daniel Grunwald
- David Srbecky
- Ed Harvey
- Siegfried Pammer
- Artur Zgodzinski
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
ILSpy 2.2.0.1707
This is not the latest version of ILSpy available.
All Checks are Unknown
2 Test of Unknown Status
Validation Testing Unknown
Verification Testing Unknown
To install ILSpy, run the following command from the command line or from PowerShell:
To upgrade ILSpy, run the following command from the command line or from PowerShell:
To uninstall ILSpy, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download ilspy --internalize --version=2.2.0.1707 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade ilspy -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade ilspy -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure ilspy installed
win_chocolatey:
name: ilspy
state: present
version: 2.2.0.1707
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'ilspy' do
action :install
version '2.2.0.1707'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: ilspy,
Version: 2.2.0.1707,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller ilspy
{
Name = 'ilspy'
Ensure = 'Present'
Version = '2.2.0.1707'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'ilspy':
provider => 'chocolatey',
ensure => '2.2.0.1707',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install ilspy version="2.2.0.1707" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator ferventcoder on 19 Feb 2015.
Development started after Red Gate announced that the free version of .NET Reflector would cease to exist by end of February 2011.
Features
- Assembly browsing
- IL Disassembly
- Support C# 5.0 "async"
- Decompilation to C#
- Supports lambdas and 'yield return'
- Shows XML documentation
- Decompilation to VB
- Saving of resources
- Save decompiled assembly as .csproj
- Search for types/methods/properties (substring)
- Hyperlink-based type/method/property navigation
- Base/Derived types navigation
- Navigation history
- BAML to XAML decompiler
- Save Assembly as C# Project
- Find usage of field/method
- Extensible via plugins (MEF)
- Assembly Lists
$packageName = 'ilspy'
$url = 'https://github.com/icsharpcode/ILSpy/releases/download/2.2/ILSpy_2.2.0.1706_Binaries.zip'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$checksum = 'a8479d89ffb32908a5da5517dc9d8c5d71acad4e'
$checksumType = 'sha1'
Set-Content -Path ("$toolsDir\$packageName.exe.gui") -Value $nul
Install-ChocolateyZipPackage -PackageName "$packageName" -Url "$url" -UnzipLocation "$toolsDir" -Url64bit "" -Checksum "$checksum" -ChecksumType "$checksumType"
Log in or click on link to see number of positives.
- ICSharpCode.AvalonEdit.dll (b1382c79162a) - ## / 54
- ICSharpCode.Decompiler.dll (8d1e8c0bd798) - ## / 54
- ICSharpCode.NRefactory.CSharp.dll (349a189ff2fb) - ## / 54
- ICSharpCode.NRefactory.dll (bdea4d5cf9d8) - ## / 55
- ICSharpCode.NRefactory.VB.dll (1bb24faa2453) - ## / 54
- ICSharpCode.TreeView.dll (5e0f2b4ec47e) - ## / 54
- ILSpy.BamlDecompiler.Plugin.dll (9fb573f49032) - ## / 53
- ILSpy.exe (d16035d1eb6c) - ## / 54
- Mono.Cecil.dll (c2cbfa2e96a1) - ## / 53
- Mono.Cecil.Pdb.dll (480d186b30b0) - ## / 54
- ILSpy_2.2.0.1706_Binaries.zip (3781c5d181fe) - ## / 56
- ilspy.2.2.0.1707.nupkg (d0df6b3f7d1f) - ## / 57
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
ILSpy 7.0-preview2 | 29 | Monday, January 11, 2021 | Approved |
ILSpy 7.0-preview1 | 78 | Monday, November 16, 2020 | Approved |
ILSpy 6.2.1 | 13842 | Monday, October 12, 2020 | Approved |
ILSpy 6.2 | 3344 | Thursday, September 24, 2020 | Approved |
ILSpy 6.2-preview2 | 32 | Friday, September 18, 2020 | Approved |
ILSpy 6.2-preview1 | 52 | Monday, August 31, 2020 | Approved |
ILSpy 6.1 | 8519 | Tuesday, July 28, 2020 | Approved |
ILSpy 6.0 | 3381 | Tuesday, July 7, 2020 | Approved |
ILSpy 6.0-rc1 | 52 | Monday, June 29, 2020 | Approved |
ILSpy 6.0-preview4 | 52 | Wednesday, June 17, 2020 | Approved |
ILSpy 6.0-preview3 | 121 | Saturday, April 18, 2020 | Approved |
ILSpy 6.0-preview2 | 3237 | Tuesday, January 21, 2020 | Approved |
ILSpy 6.0-preview1 | 130 | Monday, December 2, 2019 | Approved |
ILSpy 5.0.2 | 28890 | Saturday, November 2, 2019 | Approved |
ILSpy 5.0.1 | 4717 | Monday, October 7, 2019 | Approved |
ILSpy 5.0 | 3666 | Thursday, September 19, 2019 | Approved |
ILSpy 5.0-rc1 | 107 | Monday, September 9, 2019 | Approved |
ILSpy 5.0-preview4 | 141 | Monday, August 12, 2019 | Approved |
ILSpy 5.0-preview3 | 115 | Monday, July 8, 2019 | Approved |
ILSpy 5.0-preview2 | 159 | Sunday, May 12, 2019 | Approved |
ILSpy 5.0-preview1 | 176 | Sunday, March 10, 2019 | Approved |
ILSpy 4.0.1 | 32412 | Friday, January 25, 2019 | Approved |
ILSpy 4.0.0.20181231-beta3 | 145 | Monday, December 31, 2018 | Approved |
ILSpy 4.0-beta3 | 145 | Sunday, December 16, 2018 | Approved |
ILSpy 4.0-beta2 | 223 | Monday, August 13, 2018 | Approved |
ILSpy 4.0-beta1 | 172 | Thursday, August 2, 2018 | Approved |
ILSpy 4.0-alpha1 | 194 | Monday, July 23, 2018 | Approved |
ILSpy 3.2.0 | 6383 | Sunday, July 1, 2018 | Approved |
ILSpy 3.2-rc | 179 | Sunday, June 24, 2018 | Approved |
ILSpy 3.2-beta | 185 | Monday, June 11, 2018 | Approved |
ILSpy 3.1.0.20180317-beta1 | 263 | Saturday, March 17, 2018 | Approved |
ILSpy 3.1 | 2004 | Wednesday, April 11, 2018 | Approved |
ILSpy 3.1-beta1 | 226 | Thursday, March 15, 2018 | Approved |
ILSpy 3.0.1.20180317 | 1080 | Saturday, March 17, 2018 | Approved |
ILSpy 3.0.1 | 435 | Thursday, March 15, 2018 | Approved |
ILSpy 2.4.0.1963 | 14160 | Sunday, June 5, 2016 | Approved |
ILSpy 2.3.2 | 906 | Tuesday, April 12, 2016 | Approved |
ILSpy 2.3.1.1855 | 2857 | Monday, July 13, 2015 | Approved |
ILSpy 2.3.0.1827 | 3796 | Tuesday, March 10, 2015 | Approved |
ILSpy 2.2.0.1708 | 782 | Friday, February 20, 2015 | Approved |
ILSpy 2.2.0.1707 | 379 | Wednesday, February 18, 2015 | Approved |
ILSpy 2.2.0.1706 | 780 | Wednesday, January 21, 2015 | Approved |
ILSpy 2.1.0.1000 | 3760 | Friday, November 2, 2012 | Approved |
ILSpy 1.0.0.1000 | 738 | Wednesday, December 14, 2011 | Approved |
© 2011-2014 AlphaSierraPapa for the SharpDevelop team
Ground Rules:
- This discussion is only about ILSpy and the ILSpy package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or ILSpy, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.