Downloads:
21,305
Downloads of v 6.4.1:
1,523
Last Update:
09 Sep 2023
Package Maintainer(s):
Software Author(s):
- 0xd4d
- ElektroKill
Tags:
dnspy dnspyex assembly cil debugger decompiler dnlib dotnet editor il ilspy msil net .net- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
dnSpyEx
- 1
- 2
- 3
6.4.1 | Updated: 09 Sep 2023
- Software Specific:
- Software Site
- Software Source
- 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:
21,305
Downloads of v 6.4.1:
1,523
Maintainer(s):
Software Author(s):
- 0xd4d
- ElektroKill
dnSpyEx 6.4.1
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by 0xd4d, ElektroKill. The inclusion of 0xd4d, ElektroKill trademark(s), if any, upon this webpage is solely to identify 0xd4d, ElektroKill goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install dnSpyEx, run the following command from the command line or from PowerShell:
To upgrade dnSpyEx, run the following command from the command line or from PowerShell:
To uninstall dnSpyEx, 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 dnspyex --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 dnspyex -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 dnspyex -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 dnspyex
win_chocolatey:
name: dnspyex
version: '6.4.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'dnspyex' do
action :install
source 'INTERNAL REPO URL'
version '6.4.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller dnspyex
{
Name = "dnspyex"
Version = "6.4.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'dnspyex':
ensure => '6.4.1',
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 by moderator Windos on 17 Sep 2023.
dnSpy is a debugger and .NET assembly editor. You can use it to edit and debug assemblies even if you don't have any source code available. Main features:
- Debug .NET and Unity assemblies
- Edit .NET and Unity assemblies
- Light and dark themes
See below for more features
Debugger
- Debug .NET Framework, .NET and Unity game assemblies, no source code required
- Set breakpoints and step into any assembly
- Locals, watch, autos windows
- Variables windows support saving variables (eg. decrypted byte arrays) to disk or view them in the hex editor (memory window)
- Object IDs
- Multiple processes can be debugged at the same time
- Break on module load
- Tracepoints and conditional breakpoints
- Export/import breakpoints and tracepoints
- Call stack, threads, modules, processes windows
- Break on thrown exceptions (1st chance)
- Variables windows support evaluating C# / Visual Basic expressions
- Dynamic modules can be debugged (but not dynamic methods due to CLR limitations)
- Output window logs various debugging events, and it shows timestamps by default :)
- Assemblies that decrypt themselves at runtime can be debugged, dnSpy will use the in-memory image. You can also force dnSpy to always use in-memory images instead of disk files.
- Public API, you can write an extension or use the C# Interactive window to control the debugger
Assembly Editor
- All metadata can be edited
- Edit methods and classes in C# or Visual Basic with IntelliSense, no source code required
- Add new methods, classes or members in C# or Visual Basic
- IL editor for low-level IL method body editing
- Low-level metadata tables can be edited. This uses the hex editor internally.
Hex Editor
- Click on an address in the decompiled code to go to its IL code in the hex editor
- The reverse of the above, press F12 in an IL body in the hex editor to go to the decompiled code or other high-level representation of the bits. It's great to find out which statement a patch modified.
- Highlights .NET metadata structures and PE structures
- Tooltips show more info about the selected .NET metadata / PE field
- Go to position, file, RVA
- Go to .NET metadata token, method body, #Blob / #Strings / #US heap offset or #GUID heap index
- Follow references (Ctrl+F12)
Other
- BAML decompiler
- Blue, light and dark themes (and a dark high contrast theme)
- Bookmarks
- C# Interactive window can be used to script dnSpy
- Search assemblies for classes, methods, strings, etc
- Analyze class and method usage, find callers, etc
- Multiple tabs and tab groups
- References are highlighted, use Tab / Shift+Tab to move to the next reference
- Go to the entry point and module initializer commands
- Go to metadata token or metadata row commands
- Code tooltips (C# and Visual Basic)
- Export to project
List of other open source libraries used by dnSpy
- ILSpy decompiler engine (C# and Visual Basic decompilers)
- Roslyn (C# and Visual Basic compilers)
- dnlib (.NET metadata reader/writer which can also read obfuscated assemblies)
- VS MEF (Faster MEF equals faster startup)
- ClrMD (Access to lower level debugging info not provided by the CorDebug API)
- Iced (x86/x64 disassembler)
Translating dnSpy
Click here if you want to help with translating dnSpy to your native language.
Credits
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
1. Download the zip archive:
x32: https://github.com/dnSpyEx/dnSpy/releases/download/v6.4.1/dnSpy-net-win32.zip
x64: https://github.com/dnSpyEx/dnSpy/releases/download/v6.4.1/dnSpy-net-win64.zip
2. You can use one of the following methods to obtain the checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
- Using AU:
Get-RemoteChecksum https://github.com/dnSpyEx/dnSpy/releases/download/v6.4.1/dnSpy-net-win64.zip
3. Compare to Checksum:
checksum32: 003FF7AA5F371D9E430850526EEDF36872109452A68B77E949D90A19F667DBA2
checksum64: 0B7DC7657D62134E6616FB1FEF367198E0CD7FA70112AC0AB46DA0FC0BD8B8ED
File 'LICENSE.txt' is obtained from:
https://github.com/dnSpyEx/dnSpy/blob/master/dnSpy/dnSpy/LicenseInfo/LICENSE.txt
dnSpy is released under the GPLv3 license, see GPLv3.txt for more information.
Copyright (C) 2014-2019 [email protected]
This file is part of dnSpy
dnSpy is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dnSpy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with dnSpy. If not, see <http://www.gnu.org/licenses/>.
md5: 33B7049E0D62B66E9B400D6C7CB3F979 | sha1: 418E675DDD3EAFAF4D358D18123F307FF6493BD2 | sha256: 003FF7AA5F371D9E430850526EEDF36872109452A68B77E949D90A19F667DBA2 | sha512: 29A9E38266D32BA53D1C96DD020D0566C500EC486D164D5D04173A5FA36EBB9D23CD706721A52DFCD26AD755414CBF90D4A98466B7BF7DDF7F7C88107F37732B
$packageName = $env:ChocolateyPackageName
$p = Get-Process -Name dnSpy -ea 0
if (!$p) {
Write-Host "$packageName is not running."
return
}
Write-Host "$packageName is running, trying to gracefully shut it down before upgrade/uninstall..."
Stop-Process -InputObject $p -Force
md5: C9EF06B120CA25775923C35162D000F1 | sha1: 5CC6ADA0552363434AA0FF69CEE721F47172BED1 | sha256: 0B7DC7657D62134E6616FB1FEF367198E0CD7FA70112AC0AB46DA0FC0BD8B8ED | sha512: 40EA9922EEE7E9A15A2273F462E4E04D8D361D74FBE98FBD91A73E8D50FBE3335140059D4416474C76159AE8B7FC6DAFFA0419666B36C5AE26244520DB98853F
$ErrorActionPreference = "Stop";
$startMenuPath = [Environment]::GetFolderPath("CommonPrograms")
Remove-Item "$startMenuPath\dnSpy.lnk" -Force -ea 0
Log in or click on link to see number of positives.
- dnspyex.6.4.1.nupkg (e5d26c6de42d) - ## / 50
- dnSpy-net-win32.zip (003ff7aa5f37) - ## / 52
- dnSpy-net-win64.zip (0b7dc7657d62) - ## / 52
- dnSpy.Console.exe (d4bf416b03b6) - ## / 71
- dnSpy.exe (728d9bb72d49) - ## / 71
- dnSpy.Console.exe (496cbd138978) - ## / 71
- dnSpy.exe (8ba0eb9403a0) - ## / 71
- dnSpy.Analyzer.x.dll (0a4533ff24f1) - ## / 70
- dnSpy.AsmEditor.x.dll (83edead9a7ea) - ## / 70
- dnSpy.BamlDecompiler.x.dll (24f4bc7f33ed) - ## / 70
- dnSpy.Console.dll (a6cc844764f1) - ## / 71
- dnSpy.Contracts.Debugger.dll (b28d685f48bc) - ## / 70
- dnSpy.Contracts.Debugger.DotNet.CorDebug.dll (3b335b585ec6) - ## / 70
- dnSpy.Contracts.Debugger.DotNet.dll (0c51a6e074f3) - ## / 70
- dnSpy.Contracts.Debugger.DotNet.Mono.dll (de310da9da8b) - ## / 70
- dnSpy.Contracts.DnSpy.dll (6a160aff5e32) - ## / 70
- dnSpy.Contracts.Logic.dll (3e3a374af587) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.dll (f628a10eb4c7) - ## / 70
- dnSpy.Debugger.DotNet.Interpreter.dll (6da790d984f1) - ## / 70
- dnSpy.Debugger.DotNet.Metadata.dll (0e466a2839b8) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.dll (233408d52f74) - ## / 69
- dnSpy.Debugger.DotNet.x.dll (3771e2d2ff65) - ## / 70
- dnSpy.Debugger.x.dll (a213c77bd1cd) - ## / 70
- dnSpy.Decompiler.dll (506155bf6c63) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.dll (63d2517b45c5) - ## / 70
- dnSpy.Decompiler.ILSpy.x.dll (ca041d4d85de) - ## / 70
- dnSpy.dll (302f265c28f1) - ## / 69
- dnSpy.Images.dll (823100461e48) - ## / 69
- dnSpy.Roslyn.CSharp.EditorFeatures.dll (68baa558d70d) - ## / 70
- dnSpy.Roslyn.CSharp.Internal.dll (74fe1134c4cf) - ## / 65
- dnSpy.Roslyn.dll (efa61003be2c) - ## / 70
- dnSpy.Roslyn.EditorFeatures.dll (98bdf90f3b2f) - ## / 70
- dnSpy.Roslyn.Internal.dll (98f16fac840a) - ## / 69
- dnSpy.Roslyn.VisualBasic.EditorFeatures.dll (b99335c57d16) - ## / 69
- dnSpy.Roslyn.VisualBasic.Internal.dll (58b776b04c13) - ## / 70
- dnSpy.Scripting.Roslyn.x.dll (0a5a9cdc0e91) - ## / 70
- ICSharpCode.Decompiler.dll (9d7aa857ce6f) - ## / 70
- ICSharpCode.NRefactory.CSharp.dll (b2114d78f38f) - ## / 70
- ICSharpCode.NRefactory.dll (03968f6e03e2) - ## / 70
- ICSharpCode.NRefactory.VB.dll (20c578e3ed62) - ## / 70
- ICSharpCode.TreeView.dll (c9e11cf23586) - ## / 70
- Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.dll (893f902ed1a6) - ## / 70
- Microsoft.CodeAnalysis.ExpressionEvaluator.dll (cd8a1c72fd29) - ## / 70
- Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.dll (e45de566751e) - ## / 70
- Mono.Debugger.Soft.dll (1599de9054bf) - ## / 70
- dnSpy.Analyzer.x.dll (6cac2e4bac36) - ## / 70
- dnSpy.AsmEditor.x.dll (5f180e9bb333) - ## / 69
- dnSpy.BamlDecompiler.x.dll (0effc9cf8548) - ## / 69
- dnSpy.Console.dll (f84e2204c295) - ## / 71
- dnSpy.Debugger.DotNet.CorDebug.x.dll (84835159f06e) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.dll (76ef4e5d612a) - ## / 69
- dnSpy.Debugger.DotNet.x.dll (18847d60e8bc) - ## / 70
- dnSpy.Debugger.x.dll (3c8271f6b1ff) - ## / 70
- dnSpy.Decompiler.ILSpy.x.dll (d23ad5ea26ef) - ## / 70
- dnSpy.dll (fcba823fad46) - ## / 70
- dnSpy.Scripting.Roslyn.x.dll (3b1d62ff88d0) - ## / 70
- dnSpy.Analyzer.x.resources.dll (6eb931bf06b2) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (64c09e457d17) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (9808a89f8ba8) - ## / 70
- dnSpy.Console.resources.dll (df3bd513d4e8) - ## / 69
- dnSpy.Contracts.DnSpy.resources.dll (e7d17f4ceb97) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (5262be43f709) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (629a91c969a0) - ## / 65
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (c424041e3d38) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (9004922ebbf0) - ## / 70
- dnSpy.Debugger.x.resources.dll (1f7f286d0ae7) - ## / 69
- dnSpy.Decompiler.ILSpy.Core.resources.dll (c650507e7228) - ## / 69
- dnSpy.Decompiler.ILSpy.x.resources.dll (5907e6a97009) - ## / 70
- dnSpy.Decompiler.resources.dll (aac56a6a51ff) - ## / 70
- dnSpy.resources.dll (6720db7c7e93) - ## / 70
- dnSpy.Roslyn.resources.dll (8d03b0c52a54) - ## / 69
- dnSpy.Scripting.Roslyn.x.resources.dll (fe20fe9ad0ca) - ## / 70
- dnSpy.Analyzer.x.resources.dll (9b3ff7cc4c1f) - ## / 68
- dnSpy.AsmEditor.x.resources.dll (5fac0c4e72bd) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (12ee0eb3350a) - ## / 70
- dnSpy.Console.resources.dll (272deff34294) - ## / 69
- dnSpy.Contracts.DnSpy.resources.dll (ed3ca6121abe) - ## / 68
- dnSpy.Contracts.Logic.resources.dll (2f4e26b80ea7) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (d15efea1bcd2) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (99ea1f4c847f) - ## / 59
- dnSpy.Debugger.DotNet.x.resources.dll (92a251534f3c) - ## / 70
- dnSpy.Debugger.x.resources.dll (0da753f64be6) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.resources.dll (dc3e075df0fb) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (164095a82fc0) - ## / 70
- dnSpy.Decompiler.resources.dll (7b3cb797f927) - ## / 70
- dnSpy.resources.dll (e14a9818b9d7) - ## / 70
- dnSpy.Roslyn.resources.dll (1976bfd5a79d) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (2462a687a0fb) - ## / 70
- dnSpy.Analyzer.x.resources.dll (65266753c06a) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (f66baa88b740) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (01dab628fda0) - ## / 70
- dnSpy.Console.resources.dll (55d080aa4bba) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (246447733b97) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (39630e3b0463) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (aafce01c8f24) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (268f2bfd9226) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (f37603a4e78b) - ## / 70
- dnSpy.Debugger.x.resources.dll (6de75f1721d2) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.resources.dll (47cfb548ddf1) - ## / 65
- dnSpy.Decompiler.ILSpy.x.resources.dll (ef144cfd9934) - ## / 70
- dnSpy.Decompiler.resources.dll (10b072560f99) - ## / 70
- dnSpy.resources.dll (06dc18b9f7d8) - ## / 70
- dnSpy.Roslyn.resources.dll (2e4ca236554d) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (7eaed1523302) - ## / 70
- dnSpy.Analyzer.x.resources.dll (d319ad3541e5) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (c992732f6023) - ## / 69
- dnSpy.BamlDecompiler.x.resources.dll (33834fa6cf4f) - ## / 68
- dnSpy.Console.resources.dll (bd70e2a8f310) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (9f5032c20873) - ## / 49
- dnSpy.Contracts.Logic.resources.dll (76fc905e5ced) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (c4a1c8233854) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (5bf858d5ef97) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (077ce09205b1) - ## / 70
- dnSpy.Debugger.x.resources.dll (dcc3339895fc) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.resources.dll (4118f73ec0db) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (d0c9c4fbc667) - ## / 69
- dnSpy.Decompiler.resources.dll (cc8fed87eeb9) - ## / 70
- dnSpy.resources.dll (fa7eab2488ad) - ## / 70
- dnSpy.Roslyn.resources.dll (e62b0d07d07c) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (b59dbd78b548) - ## / 70
- dnSpy.Analyzer.x.resources.dll (4f5fd188868f) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (fc13d579853a) - ## / 41
- dnSpy.BamlDecompiler.x.resources.dll (10979ba94121) - ## / 70
- dnSpy.Console.resources.dll (b17d5678014b) - ## / 69
- dnSpy.Contracts.DnSpy.resources.dll (6412bafce301) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (365535ae1a8a) - ## / 69
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (b1322affbf5c) - ## / 68
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (dd5a0b6d169c) - ## / 66
- dnSpy.Debugger.DotNet.x.resources.dll (e0dc805f8864) - ## / 66
- dnSpy.Debugger.x.resources.dll (5819ee01410d) - ## / 57
- dnSpy.Decompiler.ILSpy.Core.resources.dll (33823284527f) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (ca40f39e815c) - ## / 70
- dnSpy.Decompiler.resources.dll (58ae1be9fbdd) - ## / 70
- dnSpy.resources.dll (dae18ba6ba02) - ## / 70
- dnSpy.Roslyn.resources.dll (660458fe2a35) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (4fc20f3785fd) - ## / 70
- dnSpy.Analyzer.x.resources.dll (1109eeef0542) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (282eefcc7340) - ## / 66
- dnSpy.BamlDecompiler.x.resources.dll (12ab77d8c136) - ## / 70
- dnSpy.Console.resources.dll (9871e7c55ba8) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (aeb9e317c0a6) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (96dd05729142) - ## / 69
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (0092dbaff201) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (e4c66d83c1b0) - ## / 69
- dnSpy.Debugger.DotNet.x.resources.dll (9b12e5426f72) - ## / 70
- dnSpy.Debugger.x.resources.dll (1a005cb19491) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.resources.dll (a26ded9bdce3) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (ae5ffcd43b9a) - ## / 69
- dnSpy.Decompiler.resources.dll (5fd3ee8854c7) - ## / 69
- dnSpy.resources.dll (d93014b39697) - ## / 70
- dnSpy.Roslyn.resources.dll (53dfb33733ff) - ## / 69
- dnSpy.Scripting.Roslyn.x.resources.dll (c0c3bb9f0d75) - ## / 70
- dnSpy.Analyzer.x.resources.dll (740e3eeb457b) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (1249b7baef07) - ## / 69
- dnSpy.BamlDecompiler.x.resources.dll (c0076be4a616) - ## / 69
- dnSpy.Console.resources.dll (2cc163880625) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (8f7185c27851) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (befc64032c32) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (373055ca0abf) - ## / 69
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (93e4b393e931) - ## / 68
- dnSpy.Debugger.DotNet.x.resources.dll (a173d0b763be) - ## / 70
- dnSpy.Debugger.x.resources.dll (94d45f719ff0) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.resources.dll (5582b3074d14) - ## / 69
- dnSpy.Decompiler.ILSpy.x.resources.dll (7f929cb9b6b1) - ## / 69
- dnSpy.Decompiler.resources.dll (ee83d6b6dcf7) - ## / 70
- dnSpy.resources.dll (49bd1955ae5d) - ## / 70
- dnSpy.Roslyn.resources.dll (b3543f6ba7ec) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (b1718fef5faf) - ## / 70
- dnSpy.Analyzer.x.resources.dll (cc87f2836949) - ## / 63
- dnSpy.AsmEditor.x.resources.dll (35758d5cc847) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (0c021a0198ea) - ## / 70
- dnSpy.Console.resources.dll (5c7202c30125) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (e282c19489e2) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (4e2e6323d216) - ## / 69
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (eca70158b7f3) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (db144950ee80) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (5540f323d93c) - ## / 68
- dnSpy.Debugger.x.resources.dll (b65f9548938c) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.resources.dll (a1603004a8f4) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (87e3e157f580) - ## / 70
- dnSpy.Decompiler.resources.dll (32459831aef4) - ## / 70
- dnSpy.resources.dll (cb92c583e1c4) - ## / 70
- dnSpy.Roslyn.resources.dll (9890f8852241) - ## / 69
- dnSpy.Scripting.Roslyn.x.resources.dll (d21ec7b18569) - ## / 70
- dnSpy.Analyzer.x.resources.dll (9f8e81434ac4) - ## / 68
- dnSpy.AsmEditor.x.resources.dll (3cae196395e7) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (1262bff6ee88) - ## / 70
- dnSpy.Console.resources.dll (3179ef579c16) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (688b2cf59537) - ## / 69
- dnSpy.Contracts.Logic.resources.dll (df93f1e41c94) - ## / 69
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (c5648bfee088) - ## / 68
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (8bd031a576f9) - ## / 52
- dnSpy.Debugger.DotNet.x.resources.dll (adc1610dd611) - ## / 68
- dnSpy.Debugger.x.resources.dll (df0f1de7d1d6) - ## / 69
- dnSpy.Decompiler.ILSpy.Core.resources.dll (0234650d354b) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (50f62499c5c8) - ## / 69
- dnSpy.Decompiler.resources.dll (aff378ff4a9f) - ## / 69
- dnSpy.resources.dll (354ae2040a3a) - ## / 67
- dnSpy.Roslyn.resources.dll (2bc3a118c56f) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (f3f84a537917) - ## / 70
- dnSpy.Analyzer.x.resources.dll (97e15c8ca9a1) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (9e7a420e1cf0) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (437789e17653) - ## / 70
- dnSpy.Console.resources.dll (2926dea9f8b9) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (b8a06a62fc34) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (914c7746ea33) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (953507717623) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (93fe7b42b288) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (6848e6d43476) - ## / 70
- dnSpy.Debugger.x.resources.dll (acec35496e8a) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.resources.dll (4b3e5024ce39) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (f5a7390728a0) - ## / 70
- dnSpy.Decompiler.resources.dll (a74f553545d1) - ## / 70
- dnSpy.resources.dll (f8c55a73e0ba) - ## / 70
- dnSpy.Roslyn.resources.dll (2176d3bd02aa) - ## / 69
- dnSpy.Scripting.Roslyn.x.resources.dll (bee9b8ca1d33) - ## / 70
- dnSpy.Analyzer.x.resources.dll (80634e05c87d) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (7c1c908e11ad) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (965b9b0fbd01) - ## / 70
- dnSpy.Console.resources.dll (1677284716a1) - ## / 69
- dnSpy.Contracts.DnSpy.resources.dll (5d9088246f02) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (83ff8d7b5753) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (29d2c5591c72) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (feabeb6d6ede) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (0ac805ce825b) - ## / 70
- dnSpy.Debugger.x.resources.dll (5be7346e21bc) - ## / 59
- dnSpy.Decompiler.ILSpy.Core.resources.dll (5c6727370180) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (ceb9b17f553e) - ## / 70
- dnSpy.Decompiler.resources.dll (f3a76ed12357) - ## / 70
- dnSpy.resources.dll (cf8c5f79d3c7) - ## / 70
- dnSpy.Roslyn.resources.dll (cd6beaae8270) - ## / 69
- dnSpy.Scripting.Roslyn.x.resources.dll (62acc0eee51e) - ## / 69
- dnSpy.Analyzer.x.resources.dll (d3740700afc0) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (46a30c9e6276) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (7c137633f9c8) - ## / 70
- dnSpy.Console.resources.dll (3ab93b96edb4) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (bc004e489dc6) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (14ac363e802c) - ## / 69
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (624fd122c456) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (7843da513e7a) - ## / 69
- dnSpy.Debugger.DotNet.x.resources.dll (11ea8986fa71) - ## / 70
- dnSpy.Debugger.x.resources.dll (95aee55e524e) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.resources.dll (4422f636407c) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (f34b98cf3652) - ## / 69
- dnSpy.Decompiler.resources.dll (fb162b348b06) - ## / 70
- dnSpy.resources.dll (2d78d29a9e29) - ## / 69
- dnSpy.Roslyn.resources.dll (240ed3fcc991) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (3b6da33ac883) - ## / 69
- dnSpy.Analyzer.x.resources.dll (81db988f12ce) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (022fe0b5d7d4) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (a448e6b92ad0) - ## / 70
- dnSpy.Console.resources.dll (4b8a67cad1fb) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (42ec9aa34d21) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (0c9ce6a3d63f) - ## / 69
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (555469f25366) - ## / 69
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (e1272bdc5fbe) - ## / 69
- dnSpy.Debugger.DotNet.x.resources.dll (0461c7608c8e) - ## / 70
- dnSpy.Debugger.x.resources.dll (1863771cee00) - ## / 69
- dnSpy.Decompiler.ILSpy.Core.resources.dll (14217288a9ae) - ## / 69
- dnSpy.Decompiler.ILSpy.x.resources.dll (d5ffe4b2fb9c) - ## / 70
- dnSpy.Decompiler.resources.dll (ed417abb6047) - ## / 70
- dnSpy.resources.dll (bf728e3dc501) - ## / 70
- dnSpy.Roslyn.resources.dll (07820edf9379) - ## / 69
- dnSpy.Scripting.Roslyn.x.resources.dll (abb650abdacf) - ## / 70
- dnSpy.Analyzer.x.resources.dll (8cfc6f85e683) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (754a3c7d671b) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (69d14373d499) - ## / 69
- dnSpy.Console.resources.dll (e257403e8364) - ## / 70
- dnSpy.Contracts.DnSpy.resources.dll (2e72a92b0e1d) - ## / 70
- dnSpy.Contracts.Logic.resources.dll (0322ee927647) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (20d866fb61ba) - ## / 69
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (e8e50b208f56) - ## / 69
- dnSpy.Debugger.DotNet.x.resources.dll (fae440352c77) - ## / 69
- dnSpy.Debugger.x.resources.dll (cd052c059176) - ## / 70
- dnSpy.Decompiler.ILSpy.Core.resources.dll (fbd190b325bd) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (34d421f29407) - ## / 70
- dnSpy.Decompiler.resources.dll (47c43650d0b4) - ## / 70
- dnSpy.resources.dll (4fb004660dda) - ## / 70
- dnSpy.Roslyn.resources.dll (67473db7c2ae) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (cb4e3866837a) - ## / 70
- dnSpy.Analyzer.x.resources.dll (6c775778fd57) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (5dc2b3df5c46) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (e7e9fa343b89) - ## / 69
- dnSpy.Console.resources.dll (445a07dc9247) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (bcf99033acba) - ## / 65
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (fbf8df311716) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (75fe3daa52fb) - ## / 69
- dnSpy.Debugger.x.resources.dll (6c7ce5188507) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (a4451fbba4f6) - ## / 69
- dnSpy.resources.dll (2ac1f5778793) - ## / 69
- dnSpy.Scripting.Roslyn.x.resources.dll (f8ec7d39457b) - ## / 67
- dnSpy.Analyzer.x.resources.dll (763dfcd17625) - ## / 69
- dnSpy.AsmEditor.x.resources.dll (3a1d366c6ace) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (f4b3364ef4d3) - ## / 69
- dnSpy.Console.resources.dll (430ee0dcf437) - ## / 69
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (ea862b945415) - ## / 69
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (aa5bf069a683) - ## / 69
- dnSpy.Debugger.DotNet.x.resources.dll (71b9120cd12b) - ## / 70
- dnSpy.Debugger.x.resources.dll (c7688a71df4e) - ## / 69
- dnSpy.Decompiler.ILSpy.x.resources.dll (a470f7f99067) - ## / 70
- dnSpy.resources.dll (6434ae71547a) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (f5e9de0e69b2) - ## / 70
- dnSpy.Analyzer.x.resources.dll (caf90fd11570) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (0eadfc365b98) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (30447b40d474) - ## / 69
- dnSpy.Console.resources.dll (d6e89013ab43) - ## / 68
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (633a273316ba) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (d3e3672bbefb) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (04b30cb48bfe) - ## / 69
- dnSpy.Debugger.x.resources.dll (74ad8d7b8b4b) - ## / 68
- dnSpy.Decompiler.ILSpy.x.resources.dll (ecde2837099f) - ## / 70
- dnSpy.resources.dll (b68f98c96ffa) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (cd25929ce7da) - ## / 70
- dnSpy.Analyzer.x.resources.dll (bf8b24eefeee) - ## / 61
- dnSpy.AsmEditor.x.resources.dll (170b88787886) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (d6bc9035715d) - ## / 70
- dnSpy.Console.resources.dll (9bea8344c8e4) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (59661adb34f9) - ## / 66
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (83dd8e24082e) - ## / 69
- dnSpy.Debugger.DotNet.x.resources.dll (c19942d00d9a) - ## / 70
- dnSpy.Debugger.x.resources.dll (5aabdcfc57a4) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (de8194fa4c2f) - ## / 70
- dnSpy.resources.dll (d1a29aba7d77) - ## / 69
- dnSpy.Scripting.Roslyn.x.resources.dll (9aa48bc183c8) - ## / 69
- dnSpy.Analyzer.x.resources.dll (e23736313683) - ## / 69
- dnSpy.AsmEditor.x.resources.dll (24fa3f11dbd6) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (f812b184c1f5) - ## / 69
- dnSpy.Console.resources.dll (d941ccb461bc) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (55a566d3f77d) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (5346d186ad86) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (4f7a26c83885) - ## / 70
- dnSpy.Debugger.x.resources.dll (5ecb021e3aea) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (431cf2c8764e) - ## / 70
- dnSpy.resources.dll (4f614690b763) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (3c14becc5e22) - ## / 69
- dnSpy.Analyzer.x.resources.dll (5cc2e11f1541) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (d5767d28fa7a) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (71b6256d8c2a) - ## / 67
- dnSpy.Console.resources.dll (2e60f7be24c7) - ## / 68
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (97559759ded7) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (80edfb7e3d1c) - ## / 69
- dnSpy.Debugger.DotNet.x.resources.dll (2eb5565c8c19) - ## / 69
- dnSpy.Debugger.x.resources.dll (f79d60f6d142) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (e38b81608cb6) - ## / 70
- dnSpy.resources.dll (0c29a10a6f38) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (af249cce1965) - ## / 70
- dnSpy.Analyzer.x.resources.dll (7c19473be15a) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (10946210fee4) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (7ce5ed88b008) - ## / 70
- dnSpy.Console.resources.dll (5fdabf8f83c7) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (87dc299dca7e) - ## / 69
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (fedb9f27fcd6) - ## / 69
- dnSpy.Debugger.DotNet.x.resources.dll (1d92c206938a) - ## / 70
- dnSpy.Debugger.x.resources.dll (065a7c6dacbb) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (09e7a965668a) - ## / 70
- dnSpy.resources.dll (b3be473deb06) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (045332bc852a) - ## / 69
- dnSpy.Analyzer.x.resources.dll (c41a18f7b4a9) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (ad7ff23aa0af) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (7f7c7b0d8129) - ## / 70
- dnSpy.Console.resources.dll (d215e8176c0c) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (47e12ede8041) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (91ff1f0397b7) - ## / 66
- dnSpy.Debugger.DotNet.x.resources.dll (609828b7fb79) - ## / 70
- dnSpy.Debugger.x.resources.dll (3bf513d65c73) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (73681b0a1aa9) - ## / 70
- dnSpy.resources.dll (7deae734555f) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (04b91f06c1a0) - ## / 70
- dnSpy.Analyzer.x.resources.dll (09bcebe3f1f5) - ## / 67
- dnSpy.AsmEditor.x.resources.dll (3be7b0b95f3a) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (8e7c2204ea5c) - ## / 70
- dnSpy.Console.resources.dll (5939570fad0e) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (665b5a048d2b) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (215a05c8c7cb) - ## / 63
- dnSpy.Debugger.DotNet.x.resources.dll (be4adf2ed090) - ## / 69
- dnSpy.Debugger.x.resources.dll (1d347a23b5a3) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (c17c857025a4) - ## / 70
- dnSpy.resources.dll (3ed721b0f493) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (500c863cd856) - ## / 70
- dnSpy.Analyzer.x.resources.dll (f941ae0fb241) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (5f3d5a6f5eab) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (476cad73c7d8) - ## / 70
- dnSpy.Console.resources.dll (15cd1431da84) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (59a0561b99c8) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (142fc54327e1) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (d701070a79fb) - ## / 68
- dnSpy.Debugger.x.resources.dll (3c349eea180a) - ## / 69
- dnSpy.Decompiler.ILSpy.x.resources.dll (3cef1290466d) - ## / 70
- dnSpy.resources.dll (985dcd01b3a6) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (d2fabc3aa4d7) - ## / 70
- dnSpy.Analyzer.x.resources.dll (37a6c6930fc0) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (b62708d7abcc) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (9446c37482ee) - ## / 69
- dnSpy.Console.resources.dll (009c9e5b897f) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (f96c65d82ba8) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (27ab550fb3a4) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (22107e7a4993) - ## / 70
- dnSpy.Debugger.x.resources.dll (a0a8e597c8cc) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (8c643b943aeb) - ## / 70
- dnSpy.resources.dll (50f7d92feb70) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (d07bafb4dc33) - ## / 68
- dnSpy.Analyzer.x.resources.dll (6a7e291d35ab) - ## / 69
- dnSpy.AsmEditor.x.resources.dll (24c8deb9859f) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (e60bbdf22d38) - ## / 70
- dnSpy.Console.resources.dll (49c4c152ce22) - ## / 69
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (9574b348aab1) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (47ab1c1634a9) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (35e0ac05224f) - ## / 70
- dnSpy.Debugger.x.resources.dll (a71e46b61d76) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (fedc188b4783) - ## / 70
- dnSpy.resources.dll (0c1f0f0d1dfa) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (ced6fc823cf5) - ## / 70
- dnSpy.Analyzer.x.resources.dll (920a59a9802d) - ## / 69
- dnSpy.AsmEditor.x.resources.dll (366d66c386bc) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (1a6f8cae23f1) - ## / 70
- dnSpy.Console.resources.dll (c3d54f333a02) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (cb7d188a2095) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (9817f23be043) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (de881d1e4fcf) - ## / 70
- dnSpy.Debugger.x.resources.dll (71a92e33e796) - ## / 70
- dnSpy.Decompiler.ILSpy.x.resources.dll (354d32f54883) - ## / 69
- dnSpy.resources.dll (9577256e5a00) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (8f3e8d2f1a86) - ## / 70
- dnSpy.Analyzer.x.resources.dll (cb488379d767) - ## / 70
- dnSpy.AsmEditor.x.resources.dll (965ede308364) - ## / 70
- dnSpy.BamlDecompiler.x.resources.dll (f89808c8a5d2) - ## / 70
- dnSpy.Console.resources.dll (1287b9a797b4) - ## / 70
- dnSpy.Debugger.DotNet.CorDebug.x.resources.dll (8e1c0058baa5) - ## / 70
- dnSpy.Debugger.DotNet.Mono.x.resources.dll (3df6b256f34a) - ## / 70
- dnSpy.Debugger.DotNet.x.resources.dll (e9bb0b537c69) - ## / 70
- dnSpy.Debugger.x.resources.dll (543628659123) - ## / 67
- dnSpy.Decompiler.ILSpy.x.resources.dll (6d3a62f24ff1) - ## / 70
- dnSpy.resources.dll (3c2670252033) - ## / 70
- dnSpy.Scripting.Roslyn.x.resources.dll (37bbe19a7a80) - ## / 67
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 |
---|---|---|---|---|
dnSpyEx 6.4.1 | 1523 | Saturday, September 9, 2023 | Approved | |
dnSpyEx 6.4.0 | 548 | Wednesday, June 14, 2023 | Approved | |
dnSpyEx 6.3.0 | 12125 | Saturday, January 21, 2023 | Approved | |
dnSpyEx 6.2.0 | 6305 | Wednesday, June 15, 2022 | Approved | |
dnSpyEx 6.1.9 | 804 | Saturday, July 3, 2021 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about dnSpyEx and the dnSpyEx 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 dnSpyEx, 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.