Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ jobs:
run: |
dotnet pack -c Release -o artifacts --version-suffix "preview.${{ github.run_number }}"
dotnet nuget push "artifacts/*.nupkg" \
--source "https://nuget.pkg.github.com/ChrisonSimtian/index.json" \
--source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" \
--api-key "${{ secrets.GITHUB_TOKEN }}" \
--skip-duplicate --no-symbols
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ImplicitUsings>enable</ImplicitUsings>
<Authors>Chrison Simtian</Authors>
<Company>Homelab</Company>
<RepositoryUrl>https://github.com/ChrisonSimtian/UnifiSharp</RepositoryUrl>
<PackageProjectUrl>https://github.com/ChrisonSimtian/UnifiSharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/Chrison-dev/UnifiSharp</RepositoryUrl>
<PackageProjectUrl>https://github.com/Chrison-dev/UnifiSharp</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

A C# client for the **UniFi Network API** — **mostly code-generated** from
Ubiquiti's official OpenAPI spec, with a thin hand-written runtime for auth and
transport. Sibling to [ProxmoxSharp](https://github.com/ChrisonSimtian/ProxmoxSharp);
transport. Sibling to [ProxmoxSharp](https://github.com/Chrison-dev/ProxmoxSharp);
built to bring the UniFi-managed network under the homelab's C#-native IaC. See
[ADR-0003](https://github.com/ChrisonSimtian/Homelab/blob/main/docs/adr/ADR-0003-unifisharp.md).
[ADR-0003](https://github.com/Chrison-dev/Homelab/blob/main/docs/adr/ADR-0003-unifisharp.md).

## Approach

Expand Down Expand Up @@ -88,6 +88,6 @@ unifisharp discover # JSON snapshot: sites + device/client/network counts

Read client + `discover` + `unifisharp` CLI building from the 10.4.57 spec.
Live read tests skip without `UNIFI_*` — run them against the
[`.containers/unifi`](https://github.com/ChrisonSimtian/Homelab/tree/main/.containers/unifi)
[`.containers/unifi`](https://github.com/Chrison-dev/Homelab/tree/main/.containers/unifi)
test controller (never the live network). **Next:** the legacy write adapter
(firewall rules / port profiles) once verified against the container.
Loading