Skip to content

Commit

Permalink
Minor fix in PoC project: make sure to override InputFileDirPath in…
Browse files Browse the repository at this point in the history
…stead of `InputFilePath` when possible
  • Loading branch information
eduherminio committed Nov 30, 2023
1 parent e8bb469 commit 15a2379
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AoCHelper.PoC.Library/BaseLibraryProblem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace AoCHelper.PoC.Library;
internal abstract class BaseLibraryProblem : BaseProblem
{
public override string InputFilePath =>
protected override string InputFileDirPath =>
Path.Combine(
Path.GetDirectoryName(Assembly.GetEntryAssembly()!.Location)!,
base.InputFilePath);
base.InputFileDirPath);
}

0 comments on commit 15a2379

Please sign in to comment.