Skip to content

Commit 6a5b498

Browse files
authored
Update readme documentation (#72)
1 parent 3d8171e commit 6a5b498

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,17 @@ print(result.stdout)
8181

8282
.NET SDK:
8383

84-
```bash
85-
just wasm guest-build # build the guest module
86-
just dotnet build # build the .NET SDK
84+
```shell
85+
dotnet add package Hyperlight.HyperlightSandbox.Api
86+
dotnet add package Hyperlight.HyperlightSandbox.Guest.Python
8787
```
8888

8989
```csharp
9090
using HyperlightSandbox.Api;
91+
using HyperlightSandbox.Guest.Python;
9192

9293
using var sandbox = new SandboxBuilder()
93-
.WithModulePath("python-sandbox.aot")
94+
.WithPythonModule()
9495
.Build();
9596

9697
sandbox.RegisterTool<MathArgs, double>("add", args => args.a + args.b);

0 commit comments

Comments
 (0)