fix: get entry point path

This commit is contained in:
Stevan Freeborn
2025-11-19 09:45:51 -06:00
parent 131a6bcd59
commit 9f2264cb92
+7 -2
View File
@@ -50,7 +50,7 @@ static async Task<int> GetLiveViewerCountAsync(TokenResponse tokenResponse)
static async Task<TokenResponse> GetTokenResponseAsync(Settings settings) static async Task<TokenResponse> GetTokenResponseAsync(Settings settings)
{ {
var tokenResponsePath = Path.Combine(Directory.GetCurrentDirectory(), "tokenResponse.json"); var tokenResponsePath = Path.Combine(GetEntryPointDirectory(), "tokenResponse.json");
if (File.Exists(tokenResponsePath) is false) if (File.Exists(tokenResponsePath) is false)
{ {
@@ -75,7 +75,7 @@ static async Task<TokenResponse> GetTokenResponseAsync(Settings settings)
static async Task<Settings> LoadSettingsAsync() static async Task<Settings> LoadSettingsAsync()
{ {
var settingsPath = Path.Combine(Directory.GetCurrentDirectory(), "appsettings.json"); var settingsPath = Path.Combine(GetEntryPointDirectory(), "appsettings.json");
var settingsContent = await File.ReadAllTextAsync(settingsPath); var settingsContent = await File.ReadAllTextAsync(settingsPath);
var settings = JsonSerializer.Deserialize(settingsContent, JsonContext.Default.Settings); var settings = JsonSerializer.Deserialize(settingsContent, JsonContext.Default.Settings);
@@ -204,6 +204,11 @@ static async Task<TokenResponse> GetTokenAsync(string? code, Settings settings)
return token.WithExpiresAt(); return token.WithExpiresAt();
} }
static string GetEntryPointDirectory()
{
return (string)AppContext.GetData("EntryPointFileDirectoryPath")!;
}
#endregion #endregion
#region Models #region Models