dbg-cli 0.3.3

A universal debugger CLI that lets AI agents observe runtime state instead of guessing from source code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net8.0</TargetFramework>
    <Nullable>enable</Nullable>
    <RootNamespace>DbgExample</RootNamespace>
    <AssemblyName>algos</AssemblyName>
    <!-- Debug-friendly build: keep symbols, avoid tiered-JIT surprise
         so `dbg disasm` on a hot method yields the same codegen each run. -->
    <DebugType>portable</DebugType>
    <Optimize>false</Optimize>
    <TieredCompilation>false</TieredCompilation>
  </PropertyGroup>

</Project>