Downloads:
323,704
Downloads of v 9.0.0-preview3:
33
Last Update:
10 Nov 2024
Package Maintainer(s):
Software Author(s):
- SharpDevelop Team
Tags:
ilspy foss dotnet assembly decompiler- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
ILSpy
This is a prerelease version of ILSpy.
- 1
- 2
- 3
9.0.0-preview3 | Updated: 10 Nov 2024
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
323,704
Downloads of v 9.0.0-preview3:
33
Maintainer(s):
Software Author(s):
- SharpDevelop Team
ILSpy 9.0.0-preview3
This is a prerelease version of ILSpy.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by SharpDevelop Team. The inclusion of SharpDevelop Team trademark(s), if any, upon this webpage is solely to identify SharpDevelop Team goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
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:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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://community.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: (additional options)
choco download ilspy --internalize --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade ilspy -y --source="'INTERNAL REPO URL'" --prerelease [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="'INTERNAL REPO URL'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install ilspy
win_chocolatey:
name: ilspy
version: '9.0.0-preview3'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'ilspy' do
action :install
source 'INTERNAL REPO URL'
version '9.0.0-preview3'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller ilspy
{
Name = "ilspy"
Version = "9.0.0-preview3"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'ilspy':
ensure => '9.0.0-preview3',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 10 Nov 2024.
ILSpy is the open-source .NET assembly browser and decompiler.
Features
- Decompilation to C#
- Whole-project decompilation (csproj, not sln!)
- Search for types/methods/properties (substring)
- Hyperlink-based type/method/property navigation
- Base/Derived types navigation, history
- BAML to XAML decompiler
- Extensible via plugins (MEF)
- Check out the language support status
The following MIT license applies to ILSpy, NRefactory and ICSharpCode.Decompiler.
Mono.Cecil also uses the MIT license (Copyright JB Evain).
AvalonEdit and SharpTreeView use LGPL, which can be found in the LGPL.txt file.
ILSpy.BamlDecompiler uses the MS-PL, which can be found in the MS-PL.txt file.
MIT license:
Copyright (c) 2011-2014 AlphaSierraPapa for the SharpDevelop team
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to
x64: https://github.com/icsharpcode/ILSpy/releases/download/v9.0-preview3/ILSpy_binaries_9.0.0.7833-preview3-x64.zip
to download the installer.
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum64: 73193F3BDD7358029257E97D56A565D1C38E815C4F441414FB980ED494505CA1
File 'LICENSE.txt' is obtained from:
https://github.com/icsharpcode/ILSpy/blob/master/doc/license.txt
$ErrorActionPreference = 'Stop'
$shortcutPath = Join-Path $([Environment]::GetFolderPath([System.Environment+SpecialFolder]::CommonPrograms)) 'ILSpy.lnk'
if (Test-Path $shortcutPath) {
Remove-Item $shortcutPath
}
md5: 90546224EC520C734976CFCBE3625568 | sha1: 01EA1FD505009B03D9B5381072FF181CA9CD0ED8 | sha256: 73193F3BDD7358029257E97D56A565D1C38E815C4F441414FB980ED494505CA1 | sha512: 6E7348893C1EA797A6609D3131C8FBA9BB5322FC53694646606773E43FC82D1295626D06463D1B502EF579F7E5FEC4C0723DB4F298088A9259949AA00CF4328D
Log in or click on link to see number of positives.
- ILCompiler.Reflection.ReadyToRun.dll (52148b677b25) - ## / 73
- AvalonDock.dll (b122c1b983da) - ## / 75
- AvalonDock.Themes.VS2013.dll (2bab0cd6c345) - ## / 75
- DataGridExtensions.dll (0ca618423d19) - ## / 75
- Iced.dll (f058c01321b4) - ## / 75
- ICSharpCode.AvalonEdit.dll (d41138d2e179) - ## / 75
- K4os.Compression.LZ4.dll (e282aadc2353) - ## / 75
- System.Composition.AttributedModel.dll (0f403e98d8ba) - ## / 71
- McMaster.Extensions.CommandLineUtils.dll (2128196ebd4f) - ## / 73
- NaturalSort.Extension.dll (b08a49c0f30b) - ## / 74
- Mono.Cecil.dll (831dca77470d) - ## / 73
- ilspy.9.0.0-preview3.nupkg (70c27cbda1c5) - ## / 66
- ILSpy_binaries_9.0.0.7833-preview3-x64.zip (73193f3bdd73) - ## / 67
- ICSharpCode.BamlDecompiler.dll (9d45ffd2edf5) - ## / 72
- ICSharpCode.Decompiler.dll (901f83799c66) - ## / 72
- ICSharpCode.ILSpyX.dll (69d56b632865) - ## / 72
- ILSpy.BamlDecompiler.Plugin.dll (b73aac3e155d) - ## / 72
- ILSpy.dll (7ca3f20aedd5) - ## / 72
- ILSpy.exe (2746d9dd5d33) - ## / 72
- ILSpy.ReadyToRun.Plugin.dll (c3a51b512186) - ## / 72
- Microsoft.Extensions.DependencyInjection.Abstractions.dll (67fa4325000d) - ## / 65
- Microsoft.Extensions.DependencyInjection.dll (8d6e7b64cce5) - ## / 71
- Microsoft.Xaml.Behaviors.dll (407a4642e845) - ## / 62
- Mono.Cecil.Mdb.dll (28cb367972bd) - ## / 49
- Mono.Cecil.Pdb.dll (a332332633fb) - ## / 71
- Mono.Cecil.Rocks.dll (bf992f3dce36) - ## / 69
- TomsToolbox.Composition.dll (08b922376ae4) - ## / 71
- TomsToolbox.Composition.MicrosoftExtensions.dll (d24a34bfdfbb) - ## / 71
- TomsToolbox.Essentials.dll (0204e31cd5e9) - ## / 72
- TomsToolbox.ObservableCollections.dll (8eb9a0af3e4a) - ## / 72
- TomsToolbox.Wpf.Composition.AttributedModel.dll (d016ba6b66b0) - ## / 72
- TomsToolbox.Wpf.Composition.dll (fd37ac2cae51) - ## / 72
- TomsToolbox.Wpf.dll (2fae4ecda8af) - ## / 72
- TomsToolbox.Wpf.Styles.dll (a37b2c475f69) - ## / 72
- ILSpy.ReadyToRun.Plugin.resources.dll (c3defacef2e8) - ## / 72
- ILSpy.resources.dll (c3813846c6b1) - ## / 66
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.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
ILSpy 9.0.0-preview3 | 33 | Sunday, November 10, 2024 | Approved | |
ILSpy 9.0.0-preview2 | 207 | Sunday, June 9, 2024 | Approved | |
ILSpy 9.0.0-preview1 | 128 | Monday, April 1, 2024 | Approved | |
ILSpy 8.2.0 | 54438 | Monday, November 6, 2023 | Approved | |
ILSpy 8.1.1 | 7795 | Saturday, September 16, 2023 | Approved | |
ILSpy 8.1.0 | 5658 | Friday, August 4, 2023 | Approved | |
ILSpy 8.0.0.20230622 | 3899 | Thursday, June 22, 2023 | Approved | |
ILSpy 8.0 | 3170 | Monday, May 22, 2023 | Approved | |
ILSpy 8.0-rc1 | 69 | Monday, May 15, 2023 | Approved | |
ILSpy 8.0-preview4 | 480 | Monday, April 3, 2023 | Approved | |
ILSpy 8.0-preview3 | 258 | Sunday, December 4, 2022 | Approved | |
ILSpy 8.0-preview2 | 316 | Saturday, July 30, 2022 | Approved | |
ILSpy 8.0-preview1 | 204 | Wednesday, April 20, 2022 | Approved | |
ILSpy 7.2.1 | 40945 | Tuesday, April 5, 2022 | Approved | |
ILSpy 7.2 | 6065 | Monday, February 28, 2022 | Approved | |
ILSpy 7.2-rc | 109 | Monday, February 14, 2022 | Approved | |
ILSpy 7.2-preview4 | 107 | Monday, February 7, 2022 | Approved | |
ILSpy 7.2-preview3 | 165 | Thursday, December 9, 2021 | Approved | |
ILSpy 7.2-preview2 | 128 | Monday, November 8, 2021 | Approved | |
ILSpy 7.2-preview1 | 123 | Monday, October 11, 2021 | Approved | |
ILSpy 7.1 | 32326 | Monday, May 31, 2021 | Approved | |
ILSpy 7.0 | 5121 | Wednesday, April 28, 2021 | Approved | |
ILSpy 7.0-rc2 | 207 | Sunday, April 18, 2021 | Approved | |
ILSpy 7.0-rc1 | 153 | Thursday, April 8, 2021 | Approved | |
ILSpy 7.0-preview3 | 216 | Monday, March 1, 2021 | Approved | |
ILSpy 7.0-preview2 | 201 | Monday, January 11, 2021 | Approved | |
ILSpy 7.0-preview1 | 232 | Monday, November 16, 2020 | Approved | |
ILSpy 6.2.1 | 24180 | Monday, October 12, 2020 | Approved | |
ILSpy 6.2 | 3484 | Thursday, September 24, 2020 | Approved | |
ILSpy 6.2-preview2 | 184 | Friday, September 18, 2020 | Approved | |
ILSpy 6.2-preview1 | 199 | Monday, August 31, 2020 | Approved | |
ILSpy 6.1 | 8652 | Tuesday, July 28, 2020 | Approved | |
ILSpy 6.0 | 3545 | Tuesday, July 7, 2020 | Approved | |
ILSpy 6.0-rc1 | 182 | Monday, June 29, 2020 | Approved | |
ILSpy 6.0-preview4 | 238 | Wednesday, June 17, 2020 | Approved | |
ILSpy 6.0-preview3 | 412 | Saturday, April 18, 2020 | Approved | |
ILSpy 6.0-preview2 | 3447 | Tuesday, January 21, 2020 | Approved | |
ILSpy 6.0-preview1 | 299 | Monday, December 2, 2019 | Approved | |
ILSpy 5.0.2 | 29070 | Saturday, November 2, 2019 | Approved | |
ILSpy 5.0.1 | 4867 | Monday, October 7, 2019 | Approved | |
ILSpy 5.0 | 3843 | Thursday, September 19, 2019 | Approved | |
ILSpy 5.0-rc1 | 265 | Monday, September 9, 2019 | Approved | |
ILSpy 5.0-preview4 | 324 | Monday, August 12, 2019 | Approved | |
ILSpy 5.0-preview3 | 286 | Monday, July 8, 2019 | Approved | |
ILSpy 5.0-preview2 | 363 | Sunday, May 12, 2019 | Approved | |
ILSpy 5.0-preview1 | 430 | Sunday, March 10, 2019 | Approved | |
ILSpy 4.0.1 | 32628 | Friday, January 25, 2019 | Approved | |
ILSpy 4.0.0.20181231-beta3 | 302 | Monday, December 31, 2018 | Approved | |
ILSpy 4.0-beta3 | 294 | Sunday, December 16, 2018 | Approved | |
ILSpy 4.0-beta2 | 414 | Monday, August 13, 2018 | Approved | |
ILSpy 4.0-beta1 | 330 | Thursday, August 2, 2018 | Approved | |
ILSpy 4.0-alpha1 | 379 | Monday, July 23, 2018 | Approved | |
ILSpy 3.2.0 | 6575 | Sunday, July 1, 2018 | Approved | |
ILSpy 3.2-rc | 359 | Sunday, June 24, 2018 | Approved | |
ILSpy 3.2-beta | 354 | Monday, June 11, 2018 | Approved | |
ILSpy 3.1.0.20180317-beta1 | 442 | Saturday, March 17, 2018 | Approved | |
ILSpy 3.1 | 2186 | Wednesday, April 11, 2018 | Approved | |
ILSpy 3.1-beta1 | 400 | Thursday, March 15, 2018 | Approved | |
ILSpy 3.0.1.20180317 | 1223 | Saturday, March 17, 2018 | Approved | |
ILSpy 3.0.1 | 642 | Thursday, March 15, 2018 | Approved | |
ILSpy 2.4.0.1963 | 14383 | Sunday, June 5, 2016 | Approved | |
ILSpy 2.3.2 | 1094 | Tuesday, April 12, 2016 | Approved | |
ILSpy 2.3.1.1855 | 3044 | Monday, July 13, 2015 | Approved | |
ILSpy 2.3.0.1827 | 3970 | Tuesday, March 10, 2015 | Approved | |
ILSpy 2.2.0.1708 | 958 | Friday, February 20, 2015 | Approved | |
ILSpy 2.2.0.1707 | 566 | Wednesday, February 18, 2015 | Approved | |
ILSpy 2.2.0.1706 | 923 | Wednesday, January 21, 2015 | Approved | |
ILSpy 2.1.0.1000 | 3928 | Friday, November 2, 2012 | Approved | |
ILSpy 1.0.0.1000 | 920 | Wednesday, December 14, 2011 | Approved |
Copyright © SharpDevelop Team
ILSpy 9.x is based on .NET 8.0. All artifacts except the self-contained distribution are built framework-dependent, which means .NET 8.0 must be installed prior to starting ILSpy.
Breaking Changes in ICSharpCode.Decompiler
- Remove
IsRef
,IsOut
andIsIn
flags fromIParameter
- Replace
ParameterModifiers
withReferenceKind
.
New Language Features
- Update pattern detection to Roslyn 4.11.0
- Support types that provide DisposeAsync without implementing IAsyncDisposable.
- Add support for C# 12 primary constructors.
- Add support for C# 12 'ref readonly' parameters
Contributions
- Add smooth scrolling to settings panels and DecompilerTextView (see #3244 by @tom-englert)
- Decompiler Settings: Checkbox in group header does not reflect state of the group (see #3252 by @tom-englert)
- Various WPF-related refactorings by @tom-englert (see #3257, #3266, #3274, #3283, #3285, #3291, #3292, #3294, #3295, #3297, #3298, #3299, #3302, #3308 and #3314)
- Ignore empty version directories of dotnet (#3265 by @Herrmel)
- Fix Derived Types Node always being empty (#3280 by @Applesauce314)
Enhancements
- Allow running tests on ARM64 (see #3231)
- Alow collecting analyzers annotated with
ExportAnalyzerAttribute
(see #3239) - Fix #3237: Use ref readonly locals for
readonly.ldelema
- Fix #3001: Support new resources format in ResourcesFile/ResXResourceWriter
- Fix #3134: Include
newobj
,initobj
andcall
instructions inTypeInstantiatedByAnalyzer
- Fix #3089: Add comment regarding .constraint prefix expressed as cast in C#
Bug fixes
- Fix #3209: Ensure using directives are added for extension methods in higher level patterns such as: foreach ->
GetEnumerator()
, collection initializer ->Add()
and deconstruction ->Deconstruct()
. - Fix #3255: Ignore exceptions while decoding sequence point blobs.
- Fix #2166: Unnecessary uint casts/conversions for certain bitwise operations
- Fix #3310: Filter out copy-constructor only if it's an actual record type.
And many other fixes, for a full list click here.
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.