Skip to content

Commit 874a405

Browse files
authored
Add AGENTS instructions (#21)
1 parent e3407c8 commit 874a405

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

AGENTS.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AGENTS Instructions
2+
3+
## Build requirements
4+
- This project targets **.NET 9**. Install the .NET 9 SDK before running any `dotnet` commands.
5+
- When working on Linux, use the `Release-Photino` or `Release-Web` configurations. The Windows build configurations (`*Windows`) require MAUI and only work on Windows.
6+
7+
## Running checks
8+
- There are currently no unit tests. To verify the project builds, run:
9+
```bash
10+
dotnet publish Desktop/Desktop.csproj -c Release-Photino -o ./publish/Photino-Linux
11+
```
12+
or for the web version:
13+
```bash
14+
dotnet publish Desktop/Desktop.csproj -c Release-Web -o ./publish/Web-Linux
15+
```
16+
- Ensure these commands succeed before committing changes.
17+

0 commit comments

Comments
 (0)