CodeBrix.Develop.Debug.LinuxX64 3.0.187.134

There is a newer version of this package available.
See the version list below for details.
dotnet add package CodeBrix.Develop.Debug.LinuxX64 --version 3.0.187.134
                    
NuGet\Install-Package CodeBrix.Develop.Debug.LinuxX64 -Version 3.0.187.134
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CodeBrix.Develop.Debug.LinuxX64" Version="3.0.187.134" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CodeBrix.Develop.Debug.LinuxX64" Version="3.0.187.134" />
                    
Directory.Packages.props
<PackageReference Include="CodeBrix.Develop.Debug.LinuxX64" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CodeBrix.Develop.Debug.LinuxX64 --version 3.0.187.134
                    
#r "nuget: CodeBrix.Develop.Debug.LinuxX64, 3.0.187.134"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CodeBrix.Develop.Debug.LinuxX64@3.0.187.134
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CodeBrix.Develop.Debug.LinuxX64&version=3.0.187.134
                    
Install as a Cake Addin
#tool nuget:?package=CodeBrix.Develop.Debug.LinuxX64&version=3.0.187.134
                    
Install as a Cake Tool

CodeBrix.Develop.Debug.LinuxX64

The NetCoreDbg debugger for the .NET runtime, packaged as linux-x64 native binaries. NetCoreDbg implements the GDB/MI and VSCode Debug Adapter Protocol interfaces, allowing an application to debug .NET programs by launching the debugger as a child process and speaking either protocol over stdio.

This package supports linux-x64 only — it is a carrier for native binaries, contains no managed library, and adds no NuGet dependencies. It is derived from the Samsung netcoredbg project (MIT license); see THIRD-PARTY-NOTICES.txt inside this package for full provenance and license details.

What referencing this package does

On every build of the consuming project, the debugger binaries are copied to a netcoredbg/ subfolder of the output directory, and the executable bit is restored on the netcoredbg binary (nupkg archives cannot preserve file permissions). No RuntimeIdentifier is required. The same happens on dotnet publish.

Your application launches the debugger from its own output folder, e.g.:

using System.Diagnostics;
using System.IO;

var debuggerPath = Path.Combine(AppContext.BaseDirectory, "netcoredbg", "netcoredbg");

var startInfo = new ProcessStartInfo(debuggerPath)
{
    RedirectStandardInput = true,
    RedirectStandardOutput = true,
};
startInfo.ArgumentList.Add("--interpreter=vscode");

using var debugger = Process.Start(startInfo);
// Speak the VSCode Debug Adapter Protocol over debugger.StandardInput /
// debugger.StandardOutput ...

Interpreter options: --interpreter=vscode (Debug Adapter Protocol), --interpreter=mi (GDB/MI), or --interpreter=cli (interactive command line).

Contents

File Purpose
netcoredbg The native debugger executable
ManagedPart.dll Managed helper loaded by the debugger (expression evaluation, symbol reading)
libdbgshim.so Microsoft's debugger-shim native library
Microsoft.CodeAnalysis*.dll (4 files) Roslyn scripting stack used by ManagedPart

License

The project is licensed under the MIT License. see: https://en.wikipedia.org/wiki/MIT_License

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.250.99 98 9/7/2026
3.0.187.134 151 7/6/2026