Skip to content

Commit 238caad

Browse files
fix: update region resources path for the change of directory
1 parent dc00dfd commit 238caad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Infrastructure/Data/Seeders/RegionSeeder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ await unitOfWork.Repository<Province>().AnyAsync(cancellationToken: cancellation
2222
}
2323

2424
string path = AppContext.BaseDirectory;
25-
string fullPath = Path.Combine(path, "Data", "Seeds", "Resources");
25+
string fullPath = Path.Combine(path, "Data", "Seeders", "Resources");
2626

2727
string provinceFilePath = Path.Combine(fullPath, "Provinces.json");
2828
IEnumerable<Province>? provinces = Read<Province>(provinceFilePath);

0 commit comments

Comments
 (0)