diff --git a/README.md b/README.md index 321449b..6086d95 100644 --- a/README.md +++ b/README.md @@ -81,16 +81,17 @@ print(result.stdout) .NET SDK: -```bash -just wasm guest-build # build the guest module -just dotnet build # build the .NET SDK +```shell +dotnet add package Hyperlight.HyperlightSandbox.Api +dotnet add package Hyperlight.HyperlightSandbox.Guest.Python ``` ```csharp using HyperlightSandbox.Api; +using HyperlightSandbox.Guest.Python; using var sandbox = new SandboxBuilder() - .WithModulePath("python-sandbox.aot") + .WithPythonModule() .Build(); sandbox.RegisterTool("add", args => args.a + args.b);