3 Commits
Author SHA1 Message Date
Stevan Freeborn 6011fb347d chore(release): 0.0.1 [skip ci] 2025-04-05 18:17:53 +00:00
Stevan Freeborn 331c5c59e2 Merge pull request #5 from StevanFreeborn/stevanfreeborn/fix/locate-appsettings-file-properly
fix: use GetSettingsPath when checking if settings exists
2025-04-05 13:17:33 -05:00
Stevan Freeborn b3afb2b7d2 fix: use GetSettingsPath when checking if settings exists 2025-04-05 13:13:44 -05:00
3 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
<AssemblyTitle>AltGen.Console</AssemblyTitle> <AssemblyTitle>AltGen.Console</AssemblyTitle>
<Product>AltGen.Console</Product> <Product>AltGen.Console</Product>
<Description>A command-line interface for AltGen</Description> <Description>A command-line interface for AltGen</Description>
<Version>0.0.0</Version> <Version>0.0.1</Version>
<Authors>Stevan Freeborn</Authors> <Authors>Stevan Freeborn</Authors>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<PublishSingleFile>true</PublishSingleFile> <PublishSingleFile>true</PublishSingleFile>
+7
View File
@@ -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. All notable changes to this project will be documented in this file. See [versionize](https://github.com/versionize/versionize) for commit guidelines.
<a name="0.0.1"></a>
## [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))
<a name="0.0.0"></a> <a name="0.0.0"></a>
## [0.0.0](https://www.github.com/StevanFreeborn/alt-gen/releases/tag/v0.0.0) (2025-03-29) ## [0.0.0](https://www.github.com/StevanFreeborn/alt-gen/releases/tag/v0.0.0) (2025-03-29)
@@ -7,7 +7,7 @@ class AppSettingsManager(IFileSystem fileSystem) : IAppSettingsManager
public bool AppSettingsExist() public bool AppSettingsExist()
{ {
return _fileSystem.Path.Exists(SettingsFileName); return _fileSystem.Path.Exists(GetSettingsPath());
} }
public async Task<AppSettings> GetAppSettingsAsync() public async Task<AppSettings> GetAppSettingsAsync()