chore: remove C# GameFixes infrastructure

This commit is contained in:
goaaats 2022-05-28 19:22:05 +02:00
parent 75de126c9d
commit 21ae9c018c
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
5 changed files with 4 additions and 141 deletions

View file

@ -265,7 +265,7 @@ namespace Dalamud.Interface.Internal
public void OpenStyleEditor() => this.styleEditorWindow.IsOpen = true;
/// <summary>
/// Opens the <see cref="ProfilerWindow>"/>.
/// Opens the <see cref="ProfilerWindow"/>.
/// </summary>
public void OpenProfiler() => this.profilerWindow.IsOpen = true;
@ -376,10 +376,10 @@ namespace Dalamud.Interface.Internal
{
this.signaledBoot = true;
Task.Run(async () =>
System.Threading.Tasks.Task.Run(async () =>
{
using var client = new HttpClient();
await client.PostAsync("http://localhost:1415/aging/success", new StringContent(string.Empty));
using var client = new System.Net.Http.HttpClient();
await client.PostAsync("http://localhost:1415/aging/success", new System.Net.Http.StringContent(string.Empty));
});
}
#endif