Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/instructions/integration-tests.instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,14 @@ If the skill reports missing prerequisites, provision the local SDK:
1. **Provision the local SDK and workloads** - The `.dotnet/` folder must contain a fully provisioned .NET SDK with MAUI workloads. Run:

```bash
# Step 0: Restore repo-local tools (Cake, etc.) from .config/dotnet-tools.json
dotnet tool restore

# Step 1: Download the .NET SDK (creates .dotnet/dotnet binary)
./build.sh --target=dotnet
dotnet cake --target=dotnet
Comment thread
davidnguyen-tech marked this conversation as resolved.

# Step 2: Install MAUI workloads into the local SDK (takes ~5 minutes)
./build.sh --target=dotnet-local-workloads
dotnet cake --target=dotnet-local-workloads
Comment thread
davidnguyen-tech marked this conversation as resolved.
```

**Verification**: After provisioning, verify the setup:
Expand Down
Loading