> ## Documentation Index
> Fetch the complete documentation index at: https://onecli.sh/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# .NET SDK (Coming Soon)

> .NET SDK for configuring containers to route through the OneCLI gateway. Works with C# and F# applications. Coming soon.

<Info>The .NET SDK is currently in development. Check back soon or follow us on [GitHub](https://github.com/onecli/onecli) for updates.</Info>

The .NET SDK will allow you to programmatically configure Docker containers to route through the OneCLI proxy from C# and .NET applications.

## Planned installation

```bash theme={null}
dotnet add package OneCLI.Sdk
```

## Planned usage

```csharp theme={null}
using OneCLI;

var oc = new OneCLIClient("http://localhost:18080");

var config = await oc.GetContainerConfigAsync();
Console.WriteLine(config.Env);
Console.WriteLine(config.Mounts);
```

Want this SDK sooner? [Let us know on GitHub](https://github.com/onecli/onecli/issues).
