Skip to content

Commit 9cc2abd

Browse files
authored
Merge pull request #210 from EduardoPires/codex/adicionar-agents-md-com-instru-es-de-ambiente
Update AGENTS setup guide to English
2 parents c67de07 + 10d9078 commit 9cc2abd

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

AGENTS.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# AGENTS Setup Guide
2+
3+
This repository requires environment configuration to build and run the .NET 9.0 projects. Run the installation script below with **sudo** or **root** privileges.
4+
5+
## Steps in `setup.sh`
6+
7+
1. Update and upgrade the system:
8+
```bash
9+
apt-get update && apt-get upgrade -y
10+
```
11+
2. Install basic dependencies (`wget`, `apt-transport-https`, `ca-certificates`):
12+
```bash
13+
apt-get install -y wget apt-transport-https ca-certificates
14+
```
15+
3. Add the Microsoft package key and update package lists:
16+
```bash
17+
wget https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb
18+
dpkg -i packages-microsoft-prod.deb
19+
apt-get update
20+
```
21+
4. Install **.NET SDK 9.0**:
22+
```bash
23+
apt-get install -y dotnet-sdk-9.0
24+
```
25+
Verify the installation:
26+
```bash
27+
dotnet --version
28+
```
29+
5. (Optional) Remove old packages:
30+
```bash
31+
apt-get autoremove -y
32+
```
33+
34+
## Notes from the README
35+
36+
- Use the latest version of **Visual Studio** or **Visual Studio Code**.
37+
- Ensure the matching runtime version of the SDK is installed as indicated by the project.
38+
- You can also run the Equinox Project in Visual Studio Code on Windows, Linux or macOS.

0 commit comments

Comments
 (0)