Skip to content
Open
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
35 changes: 35 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# tradecloud-sdk-dotnet

## Purpose

.NET SDK for the TC1 API v2. One top-level dir per domain entity
or connector, each containing per-operation .csproj samples
(SendOrder, AttachOrderDocuments, FindIdentityByEmail, etc.).

## Module / Stack

C# / .NET 8.0. Single solution: `tradecloud-sdk-dotnet.sln`.
No `Makefile`; refresh the solution with
`dotnet sln add $(ls -r **/*.csproj)`.

## Build

`dotnet build` / `dotnet test` against the solution.

## Entry Points

- `tradecloud-sdk-dotnet.sln` -- solution
- 17 top-level dirs (one per domain / connector / utility):
`api-connector/`, `authentication/`, `company/`, `conversation/`,
`forecast/`, `migration/`, `object-storage/`, `order/`,
`order-line-search/`, `order-search/`, `order-webhook-connector/`,
`sap-soap-connector/`, `sci-connector/`, `shipment/`,
`shipment-webhook-connector/`, `user/`, `workflow/`
- `migration/` -- legacy SDK migration helpers
- Per-operation `README.md` files inside each domain dir document
the sample's purpose

## Notes

- Mirrors the TC1 REST API surface; align changes with
`tradecloud-docs-api-v2`.