Skip to content

Commit

Permalink
fix(*) naming corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammet-klc committed Aug 17, 2023
1 parent aa5c646 commit 5d077f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/corePackages/Core.CodeGen/File/DirectoryHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static string AssemblyDirectory
{
get
{
string codeBase = PlatformHelper.GetDirectorHeader() + Assembly.GetExecutingAssembly().Location;
string codeBase = PlatformHelper.GetDirectoryHeader() + Assembly.GetExecutingAssembly().Location;
UriBuilder uri = new(codeBase);
string path = Uri.UnescapeDataString(uri.Path);
return Path.GetDirectoryName(path)!;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static string SecuredPathJoin(params string[] pathItems)
return path;
}

public static string GetDirectorHeader()
public static string GetDirectoryHeader()
{
string file;
_ = Environment.OSVersion.Platform switch
Expand Down

0 comments on commit 5d077f4

Please sign in to comment.