Skip to content

Commit df6122a

Browse files
Hylaeanclaude
andcommitted
fix: rename Hylaean.Tofupilot to Hylaean.TofuPilot globally
Corrects inconsistent casing introduced in recent commits. Renames namespaces, assemblies, directories, project files, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6e7bb61 commit df6122a

63 files changed

Lines changed: 152 additions & 152 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Cleanup test entities
5454
if: always() && env.TOFUPILOT_API_KEY != ''
5555
continue-on-error: true
56-
run: dotnet run --project tools/Hylaean.Tofupilot.Cleanup/Hylaean.Tofupilot.Cleanup.csproj
56+
run: dotnet run --project tools/Hylaean.TofuPilot.Cleanup/Hylaean.TofuPilot.Cleanup.csproj
5757
env:
5858
TOFUPILOT_API_KEY: ${{ secrets.TOFUPILOT_API_KEY }}
5959

Hylaean.TofuPilot.slnx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Solution>
2+
<Project Path="src/Hylaean.TofuPilot.Abstractions/Hylaean.TofuPilot.Abstractions.csproj" />
3+
<Project Path="src/Hylaean.TofuPilot/Hylaean.TofuPilot.csproj" />
4+
<Project Path="tests/Hylaean.TofuPilot.Tests/Hylaean.TofuPilot.Tests.csproj" />
5+
<Project Path="tests/Hylaean.TofuPilot.IntegrationTests/Hylaean.TofuPilot.IntegrationTests.csproj" />
6+
<Project Path="tools/Hylaean.TofuPilot.Cleanup/Hylaean.TofuPilot.Cleanup.csproj" />
7+
</Solution>

Hylaean.Tofupilot.slnx

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions

USAGE.md

Lines changed: 4 additions & 4 deletions

src/Hylaean.Tofupilot.Abstractions/Configuration/RetryOptions.cs renamed to src/Hylaean.TofuPilot.Abstractions/Configuration/RetryOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Hylaean.Tofupilot.Abstractions.Configuration;
1+
namespace Hylaean.TofuPilot.Abstractions.Configuration;
22

33
/// <summary>
44
/// Configuration options for retry behavior.

src/Hylaean.Tofupilot.Abstractions/Configuration/TofuPilotOptions.cs renamed to src/Hylaean.TofuPilot.Abstractions/Configuration/TofuPilotOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Hylaean.Tofupilot.Abstractions.Configuration;
1+
namespace Hylaean.TofuPilot.Abstractions.Configuration;
22

33
/// <summary>
44
/// Configuration options for the TofuPilot SDK.

src/Hylaean.Tofupilot.Abstractions/Exceptions/ApiExceptions.cs renamed to src/Hylaean.TofuPilot.Abstractions/Exceptions/ApiExceptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Net;
22

3-
namespace Hylaean.Tofupilot.Abstractions.Exceptions;
3+
namespace Hylaean.TofuPilot.Abstractions.Exceptions;
44

55
/// <summary>
66
/// Exception thrown when a bad request (400) is returned from the API.

src/Hylaean.Tofupilot.Abstractions/Exceptions/TofuPilotException.cs renamed to src/Hylaean.TofuPilot.Abstractions/Exceptions/TofuPilotException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Net;
22

3-
namespace Hylaean.Tofupilot.Abstractions.Exceptions;
3+
namespace Hylaean.TofuPilot.Abstractions.Exceptions;
44

55
/// <summary>
66
/// Base exception for all TofuPilot SDK errors.
File renamed without changes.

0 commit comments

Comments
 (0)