16 lines
586 B
Markdown
16 lines
586 B
Markdown
# Codex Instructions
|
|
|
|
## Verification Commands
|
|
|
|
Run .NET restore, build, and test commands outside the sandbox by default in this repo. Sandboxed .NET commands can stall on NuGet/package/compiler cache access, while the same commands complete normally with approved unsandboxed execution.
|
|
|
|
Preferred verification commands:
|
|
|
|
```bash
|
|
TZ=UTC dotnet restore ErsatzTV.sln -v minimal
|
|
TZ=UTC dotnet build ErsatzTV.sln --no-restore -v minimal
|
|
TZ=UTC dotnet test ErsatzTV.sln --no-build -v minimal
|
|
```
|
|
|
|
Use scoped escalated execution for these commands rather than first trying a sandboxed run.
|