diff --git a/app/Pog/lib_compiled/Pog/src/Pog.PathConfig.cs b/app/Pog/lib_compiled/Pog/src/Pog.PathConfig.cs index 1299933..049999c 100644 --- a/app/Pog/lib_compiled/Pog/src/Pog.PathConfig.cs +++ b/app/Pog/lib_compiled/Pog/src/Pog.PathConfig.cs @@ -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; @@ -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";