Skip to content

Commit

Permalink
PathConfig: Expose path to the main Pog module
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejKafka committed Jan 5, 2025
1 parent e11551e commit 0c7e434
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/Pog/lib_compiled/Pog/src/Pog.PathConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ public static class PackagePaths {

public const string DefaultRemoteRepositoryUrl = "https://matejkafka.github.io/PogPackages/";

/// Path to the main Pog module to import.
public readonly string MainModulePath;

public readonly string ContainerDir;
public readonly string ShimPath;
public readonly string VcRedistDir;
Expand Down Expand Up @@ -96,6 +99,7 @@ public PathConfig(string pogRootPath, string? dataRootPath = null, string? short
ExportedShortcutDir = shortcutExportPath;

var appPath = $"{pogRootPath}\\app\\Pog";
MainModulePath = appPath;
ContainerDir = $"{appPath}\\container";
ShimPath = $"{appPath}\\lib_compiled\\PogShimTemplate.exe";
VcRedistDir = $"{appPath}\\lib_compiled\\vc_redist";
Expand Down

0 comments on commit 0c7e434

Please sign in to comment.