Downloads:
332,250
Downloads of v 9.0.0:
50
Last Update:
19 Jan 2025
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
- 1
- 2
- 3
9.0.0 | Updated: 19 Jan 2025
- 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:
332,250
Downloads of v 9.0.0:
50
Maintainer(s):
Software Author(s):
- SharpDevelop Team
ILSpy 9.0.0
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 --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'" [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'"
$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'
source: INTERNAL REPO URL
state: present
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'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller ilspy
{
Name = "ilspy"
Version = "9.0.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'ilspy':
ensure => '9.0.0',
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 19 Jan 2025.
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/ILSpy_binaries_9.0.0.7889-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: BD30E1048773A3CFBAC6EC32FE6C7C8744E9AE40E63F0099A8B2D0945640433F
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: 434450A107A5B2C5018D88DE8E92DC93 | sha1: E9A031A2897D9DFFAF9C7171797F0D933ED9311F | sha256: BD30E1048773A3CFBAC6EC32FE6C7C8744E9AE40E63F0099A8B2D0945640433F | sha512: 4C59511DE4B12701A35B596A028B1CBFC744EE9797CD2BB888E2C4E6C440553821AD6E370104E24A5313B5EFC966416E8B230F7D633ACFD08902834742FE8C6D
Log in or click on link to see number of positives.
- AvalonDock.dll (b122c1b983da) - ## / 75
- AvalonDock.Themes.VS2013.dll (2bab0cd6c345) - ## / 75
- DataGridExtensions.dll (0ca618423d19) - ## / 75
- Iced.dll (f058c01321b4) - ## / 72
- ICSharpCode.AvalonEdit.dll (d41138d2e179) - ## / 75
- K4os.Compression.LZ4.dll (e282aadc2353) - ## / 72
- McMaster.Extensions.CommandLineUtils.dll (2128196ebd4f) - ## / 73
- NaturalSort.Extension.dll (b08a49c0f30b) - ## / 74
- Mono.Cecil.dll (831dca77470d) - ## / 73
- Microsoft.Extensions.DependencyInjection.Abstractions.dll (67fa4325000d) - ## / 72
- Microsoft.Xaml.Behaviors.dll (407a4642e845) - ## / 62
- Mono.Cecil.Mdb.dll (28cb367972bd) - ## / 73
- Mono.Cecil.Pdb.dll (a332332633fb) - ## / 71
- Mono.Cecil.Rocks.dll (bf992f3dce36) - ## / 73
- ILCompiler.Reflection.ReadyToRun.dll (64dc2ff95639) - ## / 72
- Microsoft.Extensions.DependencyInjection.dll (158761ce778e) - ## / 72
- TomsToolbox.Composition.dll (4881f1a9e78e) - ## / 72
- TomsToolbox.Composition.MicrosoftExtensions.dll (8290ba669884) - ## / 72
- TomsToolbox.Essentials.dll (39661093bdec) - ## / 72
- TomsToolbox.ObservableCollections.dll (fef5fbede4f6) - ## / 72
- TomsToolbox.Wpf.Composition.AttributedModel.dll (4962c4c2a359) - ## / 72
- TomsToolbox.Wpf.Composition.dll (01617e939092) - ## / 72
- TomsToolbox.Wpf.dll (11fe23b1acb2) - ## / 72
- TomsToolbox.Wpf.Styles.dll (b4ead564ff9c) - ## / 71
- ilspy.9.0.0.nupkg (d64c5a13a57f) - ## / 67
- ILSpy_binaries_9.0.0.7889-x64.zip (bd30e1048773) - ## / 65
- ICSharpCode.BamlDecompiler.dll (cadbb9b8b86a) - ## / 72
- ICSharpCode.Decompiler.dll (6326d3a7c593) - ## / 72
- ICSharpCode.ILSpyX.dll (546b4db3511d) - ## / 72
- ILSpy.BamlDecompiler.Plugin.dll (2d18ef405222) - ## / 63
- ILSpy.dll (a1cfb277af2d) - ## / 71
- ILSpy.exe (8a203f43b73c) - ## / 67
- ILSpy.ReadyToRun.Plugin.dll (9382ee1924b0) - ## / 63
- System.Collections.Immutable.dll (cd31e188bf9a) - ## / 72
- System.Composition.AttributedModel.dll (5d42b118fdc9) - ## / 72
- System.Reflection.Metadata.dll (329d2b03320d) - ## / 72
- ILSpy.ReadyToRun.Plugin.resources.dll (e73c5cfff203) - ## / 72
- ILSpy.resources.dll (92528895c2be) - ## / 71
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 | 50 | Sunday, January 19, 2025 | Approved | |
ILSpy 9.0.0-rc | 39 | Monday, January 6, 2025 | Approved | |
ILSpy 9.0.0-preview3 | 83 | Sunday, November 10, 2024 | Approved | |
ILSpy 9.0.0-preview2 | 220 | Sunday, June 9, 2024 | Approved | |
ILSpy 9.0.0-preview1 | 135 | Monday, April 1, 2024 | Approved | |
ILSpy 8.2.0 | 62162 | Monday, November 6, 2023 | Approved | |
ILSpy 8.1.1 | 7800 | Saturday, September 16, 2023 | Approved | |
ILSpy 8.1.0 | 5665 | Friday, August 4, 2023 | Approved | |
ILSpy 8.0.0.20230622 | 3906 | Thursday, June 22, 2023 | Approved | |
ILSpy 8.0 | 3178 | Monday, May 22, 2023 | Approved | |
ILSpy 8.0-rc1 | 75 | Monday, May 15, 2023 | Approved | |
ILSpy 8.0-preview4 | 487 | Monday, April 3, 2023 | Approved | |
ILSpy 8.0-preview3 | 271 | Sunday, December 4, 2022 | Approved | |
ILSpy 8.0-preview2 | 325 | Saturday, July 30, 2022 | Approved | |
ILSpy 8.0-preview1 | 220 | Wednesday, April 20, 2022 | Approved | |
ILSpy 7.2.1 | 40950 | Tuesday, April 5, 2022 | Approved | |
ILSpy 7.2 | 6074 | Monday, February 28, 2022 | Approved | |
ILSpy 7.2-rc | 117 | Monday, February 14, 2022 | Approved | |
ILSpy 7.2-preview4 | 118 | Monday, February 7, 2022 | Approved | |
ILSpy 7.2-preview3 | 176 | Thursday, December 9, 2021 | Approved | |
ILSpy 7.2-preview2 | 133 | Monday, November 8, 2021 | Approved | |
ILSpy 7.2-preview1 | 132 | Monday, October 11, 2021 | Approved | |
ILSpy 7.1 | 32331 | Monday, May 31, 2021 | Approved | |
ILSpy 7.0 | 5135 | Wednesday, April 28, 2021 | Approved | |
ILSpy 7.0-rc2 | 213 | Sunday, April 18, 2021 | Approved | |
ILSpy 7.0-rc1 | 159 | Thursday, April 8, 2021 | Approved | |
ILSpy 7.0-preview3 | 223 | Monday, March 1, 2021 | Approved | |
ILSpy 7.0-preview2 | 214 | Monday, January 11, 2021 | Approved | |
ILSpy 7.0-preview1 | 239 | Monday, November 16, 2020 | Approved | |
ILSpy 6.2.1 | 24192 | Monday, October 12, 2020 | Approved | |
ILSpy 6.2 | 3489 | Thursday, September 24, 2020 | Approved | |
ILSpy 6.2-preview2 | 192 | Friday, September 18, 2020 | Approved | |
ILSpy 6.2-preview1 | 207 | Monday, August 31, 2020 | Approved | |
ILSpy 6.1 | 8667 | Tuesday, July 28, 2020 | Approved | |
ILSpy 6.0 | 3553 | Tuesday, July 7, 2020 | Approved | |
ILSpy 6.0-rc1 | 196 | Monday, June 29, 2020 | Approved | |
ILSpy 6.0-preview4 | 251 | Wednesday, June 17, 2020 | Approved | |
ILSpy 6.0-preview3 | 423 | Saturday, April 18, 2020 | Approved | |
ILSpy 6.0-preview2 | 3458 | Tuesday, January 21, 2020 | Approved | |
ILSpy 6.0-preview1 | 310 | Monday, December 2, 2019 | Approved | |
ILSpy 5.0.2 | 29077 | Saturday, November 2, 2019 | Approved | |
ILSpy 5.0.1 | 4878 | Monday, October 7, 2019 | Approved | |
ILSpy 5.0 | 3859 | Thursday, September 19, 2019 | Approved | |
ILSpy 5.0-rc1 | 274 | Monday, September 9, 2019 | Approved | |
ILSpy 5.0-preview4 | 330 | Monday, August 12, 2019 | Approved | |
ILSpy 5.0-preview3 | 300 | Monday, July 8, 2019 | Approved | |
ILSpy 5.0-preview2 | 371 | Sunday, May 12, 2019 | Approved | |
ILSpy 5.0-preview1 | 437 | Sunday, March 10, 2019 | Approved | |
ILSpy 4.0.1 | 32646 | Friday, January 25, 2019 | Approved | |
ILSpy 4.0.0.20181231-beta3 | 313 | Monday, December 31, 2018 | Approved | |
ILSpy 4.0-beta3 | 302 | Sunday, December 16, 2018 | Approved | |
ILSpy 4.0-beta2 | 434 | Monday, August 13, 2018 | Approved | |
ILSpy 4.0-beta1 | 345 | Thursday, August 2, 2018 | Approved | |
ILSpy 4.0-alpha1 | 395 | Monday, July 23, 2018 | Approved | |
ILSpy 3.2.0 | 6584 | Sunday, July 1, 2018 | Approved | |
ILSpy 3.2-rc | 377 | Sunday, June 24, 2018 | Approved | |
ILSpy 3.2-beta | 368 | Monday, June 11, 2018 | Approved | |
ILSpy 3.1.0.20180317-beta1 | 452 | Saturday, March 17, 2018 | Approved | |
ILSpy 3.1 | 2204 | Wednesday, April 11, 2018 | Approved | |
ILSpy 3.1-beta1 | 411 | Thursday, March 15, 2018 | Approved | |
ILSpy 3.0.1.20180317 | 1232 | Saturday, March 17, 2018 | Approved | |
ILSpy 3.0.1 | 646 | Thursday, March 15, 2018 | Approved | |
ILSpy 2.4.0.1963 | 14392 | Sunday, June 5, 2016 | Approved | |
ILSpy 2.3.2 | 1103 | Tuesday, April 12, 2016 | Approved | |
ILSpy 2.3.1.1855 | 3049 | Monday, July 13, 2015 | Approved | |
ILSpy 2.3.0.1827 | 3981 | Tuesday, March 10, 2015 | Approved | |
ILSpy 2.2.0.1708 | 973 | Friday, February 20, 2015 | Approved | |
ILSpy 2.2.0.1707 | 579 | Wednesday, February 18, 2015 | Approved | |
ILSpy 2.2.0.1706 | 932 | Wednesday, January 21, 2015 | Approved | |
ILSpy 2.1.0.1000 | 3938 | Friday, November 2, 2012 | Approved | |
ILSpy 1.0.0.1000 | 933 | 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.x or later must be installed prior to starting ILSpy.
Generic themes of this release were refactoring the old WPF code base and moving away from platform-dependent implementations to make reuse easier via our ILSpyX package.
A few notable picks from the "What's new" department for you to check out: WebCIL and standalone ECMA-335 metadata support, as well as diagramming (either via ilspycmd or assembly context menu). And in general quality-of-life improvements like the ability to disable automatic assembly loading, performance improvements via DATAS and future-proofing for .NET 10.
New Language Features
- Add support for C# 12 primary constructors.
- Add support for C# 12 'ref readonly' parameters
- Added support for switch on
(ReadOnly)Span<char>
using a compiler-generated hash function. - Added new
a.GetValueOrDefault(b) -> a ?? b
transform for side-effect-free default values. - Support types that provide DisposeAsync without implementing IAsyncDisposable.
- Updated pattern detection to Roslyn 4.12
Enhancements
- Added support for reading WebCIL assemblies (IL embedded in WASM) (see #3184)
- Added support for reading standalone ECMA-335 metadata (portable PDB and other metadata blobs) (see #3149)
- #3118: Add "Clear assembly list" menu item.
- #2893: Add option to disable automatic assembly loading.
- Allow implicit conversions in switch
- IL output: Add indentation level to make it easier to see custom attributes belonging to interface implementations.
- IL output: Print metadata token of custom attribute.
- Replace native interop CommandLineToArgvW with parsing in Process.Unix.cs from System.Diagnostics.Process #3201
- Natural Sort without interop #3196
- AOT and x-plat changes #3203
- 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#
- Fix #3372: Fix loading a DLL that contains byte sequences matching ZIP central directory
- Use Microsoft.Sbom.Targets in NuGets #3346
Contributions
- Diagramming feature by @h0lg (see #3324)
- Various WPF-related refactorings by @tom-englert (see #3257, #3266, #3274, #3283, #3285, #3291, #3292, #3294, #3295, #3297, #3298, #3299, #3302, #3308, #3314, #3325 and #3335)
- High DPI fixes by @CreateAndInject (see #3348 and #3350)
- TreeView: Add referenced types, members and exported types under references (#3092, @fowl2)
- Adjust colors of AvalonEdit built-in highlightings for dark themes (#3138, @ltrzesniewski)
- Add support for
Mono C# compiler 2.6.4
pinned region with array variable (#3110, @ElektroKill) - Add smooth scrolling to settings panels and DecompilerTextView (see #3244 by @tom-englert)
- Ignore empty version directories of dotnet (#3265 by @Herrmel)
- Missing DecompilerSettings by @naratteu (see #3356)
- Fix metadata display of
DynamicLocalVariable
andDefaultNamespace
custom debug information (#3111, @ElektroKill) - Read and use tuple element names and dynamic type information from PDBs (#3114, @ElektroKill)
- Bugfix: infinite loop in
DetermineEffectiveAccessibility
(#3164, @yzdeveloper) - Decompiler Settings: Checkbox in group header does not reflect state of the group (see #3252 by @tom-englert)
- Fix Derived Types Node always being empty (#3280 by @Applesauce314)
Performance
- Activate Dynamic Adaptation To Application Sizes (DATAS) (#3122).
- RDP hardware acceleration (#3122): Enabling hardware acceleration for Remote Desktop Protocol (RDP) to boost performance.
- Performance: Initialize ToolPanes in
DockWorkspace.InitializeLayout()
instead of the property getter to avoid WPF seeing them inInitializeComponent()
and rendering all panes docked at the right before the layout is properly initialized.
Breaking Changes
- ICSharpCode.Decompiler: Added
MetadataFile
base class forPEFile
- ICSharpCode.Decompiler:
IModule.PEFile
is now namedIModule.MetadataFile
- ICSharpCode.Decompiler/ILSpyX: Added
IFileLoader
API to allow for easier extensibility of supported file formats (see #3191) - ILSpy: Split BAML decompiler into library and add-in (see #3178)
- ILSpy/ILSpyX: Moved non-UI analyzer API to ILSpyX (see #3186)
- ICSharpCode.Decompiler:
IProjectFileWriter
andIProjectInfoProvider
APIs are now public (see #3151 and #3191) @file
support with breaking changes to command line options #3205- New single instance handling #3212
- Remove
IsRef
,IsOut
andIsIn
flags fromIParameter
- Replace
ParameterModifiers
withReferenceKind
.
Bug fixes
- Fix #3072: Ignoring resources with the same name as a namespace.
- Fix bug in
UnknownType
: Ensuring that the FullName of nested unknown types contains the outer type name(s), not just the namespace and nested type name. - Fix #3153: Always using SHA1 for public key tokens.
- Fix ILSpy for ZIP files/VSIX with bundle signatures: Enabling ILSpy to open ZIP files and VSIX packages containing bundle signatures.
- Omit package entries from the treeview that denote the directory.
- Fix #3142: Exception when analyzing source of library with global assembly attributes
- Fix #3113: Remove GetAlternativeName and instead reuse existing names, if there are no conflicts.
- Fix #3197: Bug when trying to read a bundle/archive file
- Fix #3189: Support primitive types in Expression.Constant(object) pattern in Expression Trees
- 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.
- Fix #3319: KeyDownEvent field reference was replaced with KeyDown event reference.
- Fix #3349: Make ILSpy ready for .NET 10
- Fix #3361: switch-value conversion was losing its target 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.