import devel/dnspy

At this point, only the console version is supported and installed.
tweaks and ok bentley@

DESCR:
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:

Debugger
* Debug .NET Framework, .NET Core 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
This commit is contained in:
thfr 2020-09-04 22:11:32 +00:00
parent 8220ecbd7a
commit 7df159ffa3
5 changed files with 566 additions and 0 deletions

27
devel/dnspy/Makefile Normal file
View File

@ -0,0 +1,27 @@
# $OpenBSD: Makefile,v 1.1.1.1 2020/09/04 22:11:32 thfr Exp $
COMMENT = .NET debugger and assembly editor
V = 6.1.7
DISTNAME = dnSpy-net472
PKGNAME = dnspy-${V}
CATEGORIES = devel
HOMEPAGE = https://github.com/0xd4d/dnSpy
MAINTAINER = Thomas Frohwein <thfr@openbsd.org>
# GPLv3+
PERMIT_PACKAGE = Yes
MASTER_SITES = https://github.com/0xd4d/dnSpy/releases/download/v${V}/
EXTRACT_SUFX = .zip
DIST_SUBDIR = dnspy-${V}
MODULES = lang/mono
NO_BUILD = Yes
NO_TEST = Yes
WRKDIST = ${WRKDIR}
do-install:
mkdir -p ${PREFIX}/share/dnspy
cp -R ${WRKSRC}/dnSpy.Console.* ${WRKSRC}/bin ${PREFIX}/share/dnspy/
${SUBST_CMD} -c -m 755 ${FILESDIR}/dnspy.sh ${PREFIX}/bin/dnspy
.include <bsd.port.mk>

2
devel/dnspy/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (dnspy-6.1.7/dnSpy-net472.zip) = MntrZ3UWXnJcgAZ7WwjJj/2tTFtHG3qFzvmSPVDuORI=
SIZE (dnspy-6.1.7/dnSpy-net472.zip) = 23560249

View File

@ -0,0 +1,2 @@
#!/bin/sh
mono ${TRUEPREFIX}/share/dnspy/dnSpy.Console.exe $@

61
devel/dnspy/pkg/DESCR Normal file
View File

@ -0,0 +1,61 @@
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:
Debugger
* Debug .NET Framework, .NET Core 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

474
devel/dnspy/pkg/PLIST Normal file
View File

@ -0,0 +1,474 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2020/09/04 22:11:32 thfr Exp $
bin/dnspy
share/dnspy/
share/dnspy/bin/
share/dnspy/bin/CSharpInteractive.rsp
share/dnspy/bin/FileLists/
share/dnspy/bin/FileLists/DOTNET Framework v3.5 Client.FileList.xml
share/dnspy/bin/FileLists/DOTNET Framework v4.0 Client.FileList.xml
share/dnspy/bin/Humanizer.dll
share/dnspy/bin/ICSharpCode.Decompiler.dll
share/dnspy/bin/ICSharpCode.Decompiler.pdb
share/dnspy/bin/ICSharpCode.NRefactory.CSharp.dll
share/dnspy/bin/ICSharpCode.NRefactory.CSharp.pdb
share/dnspy/bin/ICSharpCode.NRefactory.VB.dll
share/dnspy/bin/ICSharpCode.NRefactory.VB.pdb
share/dnspy/bin/ICSharpCode.NRefactory.dll
share/dnspy/bin/ICSharpCode.NRefactory.pdb
share/dnspy/bin/ICSharpCode.TreeView.dll
share/dnspy/bin/ICSharpCode.TreeView.pdb
share/dnspy/bin/Iced.dll
share/dnspy/bin/LicenseInfo/
share/dnspy/bin/LicenseInfo/ApacheV2.txt
share/dnspy/bin/LicenseInfo/CREDITS.txt
share/dnspy/bin/LicenseInfo/GPLv3.txt
share/dnspy/bin/LicenseInfo/LICENSE.txt
share/dnspy/bin/LicenseInfo/OtherLicenses.txt
share/dnspy/bin/Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.dll
share/dnspy/bin/Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.pdb
share/dnspy/bin/Microsoft.CodeAnalysis.CSharp.Features.dll
share/dnspy/bin/Microsoft.CodeAnalysis.CSharp.Scripting.dll
share/dnspy/bin/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
share/dnspy/bin/Microsoft.CodeAnalysis.CSharp.dll
share/dnspy/bin/Microsoft.CodeAnalysis.ExpressionEvaluator.dll
share/dnspy/bin/Microsoft.CodeAnalysis.ExpressionEvaluator.pdb
share/dnspy/bin/Microsoft.CodeAnalysis.Features.dll
share/dnspy/bin/Microsoft.CodeAnalysis.Scripting.dll
share/dnspy/bin/Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.dll
share/dnspy/bin/Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.pdb
share/dnspy/bin/Microsoft.CodeAnalysis.VisualBasic.Features.dll
share/dnspy/bin/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll
share/dnspy/bin/Microsoft.CodeAnalysis.VisualBasic.dll
share/dnspy/bin/Microsoft.CodeAnalysis.Workspaces.dll
share/dnspy/bin/Microsoft.CodeAnalysis.dll
share/dnspy/bin/Microsoft.DiaSymReader.Native.amd64.dll
share/dnspy/bin/Microsoft.DiaSymReader.Native.x86.dll
share/dnspy/bin/Microsoft.Diagnostics.Runtime.dll
share/dnspy/bin/Microsoft.VisualStudio.Composition.NetFxAttributes.dll
share/dnspy/bin/Microsoft.VisualStudio.Composition.dll
share/dnspy/bin/Microsoft.VisualStudio.CoreUtility.dll
share/dnspy/bin/Microsoft.VisualStudio.Language.Intellisense.dll
share/dnspy/bin/Microsoft.VisualStudio.Text.Data.dll
share/dnspy/bin/Microsoft.VisualStudio.Text.Logic.dll
share/dnspy/bin/Microsoft.VisualStudio.Text.UI.Wpf.dll
share/dnspy/bin/Microsoft.VisualStudio.Text.UI.dll
share/dnspy/bin/Microsoft.VisualStudio.Validation.dll
share/dnspy/bin/Mono.Debugger.Soft.dll
share/dnspy/bin/Mono.Debugger.Soft.pdb
share/dnspy/bin/Ookii.Dialogs.Wpf.dll
share/dnspy/bin/System.Collections.Immutable.dll
share/dnspy/bin/System.Composition.AttributedModel.dll
share/dnspy/bin/System.Composition.Convention.dll
share/dnspy/bin/System.Composition.Hosting.dll
share/dnspy/bin/System.Composition.Runtime.dll
share/dnspy/bin/System.Composition.TypedParts.dll
share/dnspy/bin/System.Reflection.Metadata.dll
share/dnspy/bin/System.Reflection.TypeExtensions.dll
share/dnspy/bin/System.Text.Encoding.CodePages.dll
share/dnspy/bin/System.Threading.Tasks.Dataflow.dll
share/dnspy/bin/System.Threading.Tasks.Extensions.dll
share/dnspy/bin/Themes/
share/dnspy/bin/Themes/blue.dntheme
share/dnspy/bin/Themes/dark.dntheme
share/dnspy/bin/Themes/hc.dntheme
share/dnspy/bin/Themes/light.dntheme
share/dnspy/bin/cs/
share/dnspy/bin/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.Features.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.Scripting.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
share/dnspy/bin/cs/Microsoft.CodeAnalysis.resources.dll
share/dnspy/bin/cs/Microsoft.VisualStudio.Composition.resources.dll
share/dnspy/bin/cs/Microsoft.VisualStudio.Validation.resources.dll
share/dnspy/bin/cs/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/cs/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/cs/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/cs/dnSpy.Console.resources.dll
share/dnspy/bin/cs/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/cs/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/cs/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/cs/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/cs/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/cs/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/cs/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/cs/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/cs/dnSpy.Decompiler.resources.dll
share/dnspy/bin/cs/dnSpy.Roslyn.resources.dll
share/dnspy/bin/cs/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/cs/dnSpy.resources.dll
share/dnspy/bin/de/
share/dnspy/bin/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.CSharp.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.Features.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.Scripting.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
share/dnspy/bin/de/Microsoft.CodeAnalysis.resources.dll
share/dnspy/bin/de/Microsoft.VisualStudio.Composition.resources.dll
share/dnspy/bin/de/Microsoft.VisualStudio.Validation.resources.dll
share/dnspy/bin/de/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/de/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/de/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/de/dnSpy.Console.resources.dll
share/dnspy/bin/de/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/de/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/de/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/de/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/de/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/de/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/de/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/de/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/de/dnSpy.Decompiler.resources.dll
share/dnspy/bin/de/dnSpy.Roslyn.resources.dll
share/dnspy/bin/de/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/de/dnSpy.resources.dll
share/dnspy/bin/debug/
share/dnspy/bin/debug/DotNet.ex.xml
share/dnspy/bin/debug/core/
share/dnspy/bin/debug/core/x64/
share/dnspy/bin/debug/core/x64/dbgshim.dll
share/dnspy/bin/debug/core/x86/
share/dnspy/bin/debug/core/x86/dbgshim.dll
share/dnspy/bin/dnSpy.Analyzer.x.dll
share/dnspy/bin/dnSpy.Analyzer.x.pdb
share/dnspy/bin/dnSpy.AsmEditor.x.dll
share/dnspy/bin/dnSpy.AsmEditor.x.pdb
share/dnspy/bin/dnSpy.BamlDecompiler.x.dll
share/dnspy/bin/dnSpy.BamlDecompiler.x.pdb
share/dnspy/bin/dnSpy.Contracts.Debugger.DotNet.CorDebug.dll
share/dnspy/bin/dnSpy.Contracts.Debugger.DotNet.CorDebug.pdb
share/dnspy/bin/dnSpy.Contracts.Debugger.DotNet.CorDebug.xml
share/dnspy/bin/dnSpy.Contracts.Debugger.DotNet.Mono.dll
share/dnspy/bin/dnSpy.Contracts.Debugger.DotNet.Mono.pdb
share/dnspy/bin/dnSpy.Contracts.Debugger.DotNet.Mono.xml
share/dnspy/bin/dnSpy.Contracts.Debugger.DotNet.dll
share/dnspy/bin/dnSpy.Contracts.Debugger.DotNet.pdb
share/dnspy/bin/dnSpy.Contracts.Debugger.DotNet.xml
share/dnspy/bin/dnSpy.Contracts.Debugger.dll
share/dnspy/bin/dnSpy.Contracts.Debugger.pdb
share/dnspy/bin/dnSpy.Contracts.Debugger.xml
share/dnspy/bin/dnSpy.Contracts.DnSpy.dll
share/dnspy/bin/dnSpy.Contracts.DnSpy.pdb
share/dnspy/bin/dnSpy.Contracts.DnSpy.xml
share/dnspy/bin/dnSpy.Contracts.Logic.dll
share/dnspy/bin/dnSpy.Contracts.Logic.pdb
share/dnspy/bin/dnSpy.Contracts.Logic.xml
share/dnspy/bin/dnSpy.Debugger.DotNet.CorDebug.x.dll
share/dnspy/bin/dnSpy.Debugger.DotNet.CorDebug.x.pdb
share/dnspy/bin/dnSpy.Debugger.DotNet.Interpreter.dll
share/dnspy/bin/dnSpy.Debugger.DotNet.Interpreter.pdb
share/dnspy/bin/dnSpy.Debugger.DotNet.Interpreter.xml
share/dnspy/bin/dnSpy.Debugger.DotNet.Metadata.dll
share/dnspy/bin/dnSpy.Debugger.DotNet.Metadata.pdb
share/dnspy/bin/dnSpy.Debugger.DotNet.Metadata.xml
share/dnspy/bin/dnSpy.Debugger.DotNet.Mono.x.dll
share/dnspy/bin/dnSpy.Debugger.DotNet.Mono.x.pdb
share/dnspy/bin/dnSpy.Debugger.DotNet.x.dll
share/dnspy/bin/dnSpy.Debugger.DotNet.x.pdb
share/dnspy/bin/dnSpy.Debugger.x.dll
share/dnspy/bin/dnSpy.Debugger.x.pdb
share/dnspy/bin/dnSpy.Decompiler.ILSpy.Core.dll
share/dnspy/bin/dnSpy.Decompiler.ILSpy.Core.pdb
share/dnspy/bin/dnSpy.Decompiler.ILSpy.x.dll
share/dnspy/bin/dnSpy.Decompiler.ILSpy.x.pdb
share/dnspy/bin/dnSpy.Decompiler.dll
share/dnspy/bin/dnSpy.Decompiler.pdb
share/dnspy/bin/dnSpy.Images.dll
share/dnspy/bin/dnSpy.Images.pdb
share/dnspy/bin/dnSpy.Roslyn.CSharp.EditorFeatures.dll
share/dnspy/bin/dnSpy.Roslyn.CSharp.EditorFeatures.pdb
share/dnspy/bin/dnSpy.Roslyn.CSharp.Internal.dll
share/dnspy/bin/dnSpy.Roslyn.CSharp.Internal.pdb
share/dnspy/bin/dnSpy.Roslyn.EditorFeatures.dll
share/dnspy/bin/dnSpy.Roslyn.EditorFeatures.pdb
share/dnspy/bin/dnSpy.Roslyn.Internal.dll
share/dnspy/bin/dnSpy.Roslyn.Internal.pdb
share/dnspy/bin/dnSpy.Roslyn.VisualBasic.EditorFeatures.dll
share/dnspy/bin/dnSpy.Roslyn.VisualBasic.EditorFeatures.pdb
share/dnspy/bin/dnSpy.Roslyn.VisualBasic.Internal.dll
share/dnspy/bin/dnSpy.Roslyn.VisualBasic.Internal.pdb
share/dnspy/bin/dnSpy.Roslyn.dll
share/dnspy/bin/dnSpy.Roslyn.pdb
share/dnspy/bin/dnSpy.Roslyn.xml
share/dnspy/bin/dnSpy.Scripting.Roslyn.x.dll
share/dnspy/bin/dnSpy.Scripting.Roslyn.x.pdb
share/dnspy/bin/dnlib.dll
share/dnspy/bin/es/
share/dnspy/bin/es-ES/
share/dnspy/bin/es-ES/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/es-ES/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/es-ES/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/es-ES/dnSpy.Console.resources.dll
share/dnspy/bin/es-ES/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/es-ES/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/es-ES/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/es-ES/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/es-ES/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/es-ES/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/es-ES/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/es-ES/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/es-ES/dnSpy.Decompiler.resources.dll
share/dnspy/bin/es-ES/dnSpy.Roslyn.resources.dll
share/dnspy/bin/es-ES/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/es-ES/dnSpy.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.CSharp.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.Features.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.Scripting.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
share/dnspy/bin/es/Microsoft.CodeAnalysis.resources.dll
share/dnspy/bin/es/Microsoft.VisualStudio.Composition.resources.dll
share/dnspy/bin/es/Microsoft.VisualStudio.Validation.resources.dll
share/dnspy/bin/fa/
share/dnspy/bin/fa/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/fa/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/fa/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/fa/dnSpy.Console.resources.dll
share/dnspy/bin/fa/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/fa/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/fa/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/fa/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/fa/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/fa/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/fa/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/fa/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/fa/dnSpy.Decompiler.resources.dll
share/dnspy/bin/fa/dnSpy.Roslyn.resources.dll
share/dnspy/bin/fa/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/fa/dnSpy.resources.dll
share/dnspy/bin/fr/
share/dnspy/bin/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.Features.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.Scripting.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
share/dnspy/bin/fr/Microsoft.CodeAnalysis.resources.dll
share/dnspy/bin/fr/Microsoft.VisualStudio.Composition.resources.dll
share/dnspy/bin/fr/Microsoft.VisualStudio.Validation.resources.dll
share/dnspy/bin/fr/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/fr/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/fr/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/fr/dnSpy.Console.resources.dll
share/dnspy/bin/fr/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/fr/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/fr/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/fr/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/fr/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/fr/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/fr/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/fr/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/fr/dnSpy.Decompiler.resources.dll
share/dnspy/bin/fr/dnSpy.Roslyn.resources.dll
share/dnspy/bin/fr/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/fr/dnSpy.resources.dll
share/dnspy/bin/hu/
share/dnspy/bin/hu/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/hu/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/hu/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/hu/dnSpy.Console.resources.dll
share/dnspy/bin/hu/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/hu/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/hu/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/hu/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/hu/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/hu/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/hu/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/hu/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/hu/dnSpy.Decompiler.resources.dll
share/dnspy/bin/hu/dnSpy.Roslyn.resources.dll
share/dnspy/bin/hu/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/hu/dnSpy.resources.dll
share/dnspy/bin/it/
share/dnspy/bin/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.CSharp.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.Features.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.Scripting.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
share/dnspy/bin/it/Microsoft.CodeAnalysis.resources.dll
share/dnspy/bin/it/Microsoft.VisualStudio.Composition.resources.dll
share/dnspy/bin/it/Microsoft.VisualStudio.Validation.resources.dll
share/dnspy/bin/it/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/it/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/it/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/it/dnSpy.Console.resources.dll
share/dnspy/bin/it/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/it/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/it/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/it/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/it/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/it/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/it/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/it/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/it/dnSpy.Decompiler.resources.dll
share/dnspy/bin/it/dnSpy.Roslyn.resources.dll
share/dnspy/bin/it/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/it/dnSpy.resources.dll
share/dnspy/bin/pt-BR/
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
share/dnspy/bin/pt-BR/Microsoft.CodeAnalysis.resources.dll
share/dnspy/bin/pt-BR/Microsoft.VisualStudio.Composition.resources.dll
share/dnspy/bin/pt-BR/Microsoft.VisualStudio.Validation.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/pt-BR/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/pt-BR/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Console.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Decompiler.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Roslyn.resources.dll
share/dnspy/bin/pt-BR/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/pt-BR/dnSpy.resources.dll
share/dnspy/bin/pt-PT/
share/dnspy/bin/pt-PT/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/pt-PT/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/pt-PT/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Console.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Decompiler.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Roslyn.resources.dll
share/dnspy/bin/pt-PT/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/pt-PT/dnSpy.resources.dll
share/dnspy/bin/ru/
share/dnspy/bin/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.Features.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.Scripting.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
share/dnspy/bin/ru/Microsoft.CodeAnalysis.resources.dll
share/dnspy/bin/ru/Microsoft.VisualStudio.Composition.resources.dll
share/dnspy/bin/ru/Microsoft.VisualStudio.Validation.resources.dll
share/dnspy/bin/ru/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/ru/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/ru/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/ru/dnSpy.Console.resources.dll
share/dnspy/bin/ru/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/ru/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/ru/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/ru/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/ru/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/ru/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/ru/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/ru/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/ru/dnSpy.Decompiler.resources.dll
share/dnspy/bin/ru/dnSpy.Roslyn.resources.dll
share/dnspy/bin/ru/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/ru/dnSpy.resources.dll
share/dnspy/bin/tr/
share/dnspy/bin/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.Features.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.Scripting.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
share/dnspy/bin/tr/Microsoft.CodeAnalysis.resources.dll
share/dnspy/bin/tr/Microsoft.VisualStudio.Composition.resources.dll
share/dnspy/bin/tr/Microsoft.VisualStudio.Validation.resources.dll
share/dnspy/bin/tr/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/tr/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/tr/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/tr/dnSpy.Console.resources.dll
share/dnspy/bin/tr/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/tr/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/tr/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/tr/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/tr/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/tr/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/tr/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/tr/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/tr/dnSpy.Decompiler.resources.dll
share/dnspy/bin/tr/dnSpy.Roslyn.resources.dll
share/dnspy/bin/tr/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/tr/dnSpy.resources.dll
share/dnspy/bin/uk/
share/dnspy/bin/uk/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/uk/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/uk/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/uk/dnSpy.Console.resources.dll
share/dnspy/bin/uk/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/uk/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/uk/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/uk/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/uk/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/uk/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/uk/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/uk/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/uk/dnSpy.Decompiler.resources.dll
share/dnspy/bin/uk/dnSpy.Roslyn.resources.dll
share/dnspy/bin/uk/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/uk/dnSpy.resources.dll
share/dnspy/bin/zh-CN/
share/dnspy/bin/zh-CN/dnSpy.Analyzer.x.resources.dll
share/dnspy/bin/zh-CN/dnSpy.AsmEditor.x.resources.dll
share/dnspy/bin/zh-CN/dnSpy.BamlDecompiler.x.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Console.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Contracts.DnSpy.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Contracts.Logic.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Debugger.DotNet.CorDebug.x.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Debugger.DotNet.Mono.x.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Debugger.DotNet.x.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Debugger.x.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Decompiler.ILSpy.Core.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Decompiler.ILSpy.x.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Decompiler.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Roslyn.resources.dll
share/dnspy/bin/zh-CN/dnSpy.Scripting.Roslyn.x.resources.dll
share/dnspy/bin/zh-CN/dnSpy.resources.dll
share/dnspy/dnSpy.Console.exe
share/dnspy/dnSpy.Console.exe.config
share/dnspy/dnSpy.Console.pdb