diff --git a/src/AltGen.Console/AltGen.Console.csproj b/src/AltGen.Console/AltGen.Console.csproj
index f99abe6..2862c92 100644
--- a/src/AltGen.Console/AltGen.Console.csproj
+++ b/src/AltGen.Console/AltGen.Console.csproj
@@ -4,7 +4,7 @@
AltGen.Console
AltGen.Console
A command-line interface for AltGen
- 0.0.0
+ 0.0.1
Stevan Freeborn
Exe
true
diff --git a/src/AltGen.Console/CHANGELOG.md b/src/AltGen.Console/CHANGELOG.md
index a1770b9..eff403b 100644
--- a/src/AltGen.Console/CHANGELOG.md
+++ b/src/AltGen.Console/CHANGELOG.md
@@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [versionize](https://github.com/versionize/versionize) for commit guidelines.
+
+## [0.0.1](https://www.github.com/StevanFreeborn/alt-gen/releases/tag/v0.0.1) (2025-04-05)
+
+### Bug Fixes
+
+* use GetSettingsPath when checking if settings exists ([b3afb2b](https://www.github.com/StevanFreeborn/alt-gen/commit/b3afb2b7d2a3582f4f303ba7fa7dca093a144725))
+
## [0.0.0](https://www.github.com/StevanFreeborn/alt-gen/releases/tag/v0.0.0) (2025-03-29)
diff --git a/src/AltGen.Console/Config/AppSettingsManager.cs b/src/AltGen.Console/Config/AppSettingsManager.cs
index db8ae4e..2692b20 100644
--- a/src/AltGen.Console/Config/AppSettingsManager.cs
+++ b/src/AltGen.Console/Config/AppSettingsManager.cs
@@ -7,7 +7,7 @@ class AppSettingsManager(IFileSystem fileSystem) : IAppSettingsManager
public bool AppSettingsExist()
{
- return _fileSystem.Path.Exists(SettingsFileName);
+ return _fileSystem.Path.Exists(GetSettingsPath());
}
public async Task GetAppSettingsAsync()