You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moved configurations directory from build\bin\Debug\configurations to build\bin\resources\configurations. This change update the build directory structure to match the installation directory structure making the source code and install more alike.
/// Get the application's bin directory. The bin directory contains all ShellAnything's executables and binaries.
220
+
/// </summary>
221
+
/// <returns>Returns the path of the bin directory.</returns>
222
+
static std::string GetBinDirectory();
223
+
224
+
/// <summary>
225
+
/// Get the application's installation directory. The installation directory is the root directory selected when the application was installed.
226
+
/// When running in debug mode or within a development environment, the installation directory is set to the parent directory of `${CMAKE_BIN_DIR}\build\bin\Debug`.
227
+
/// </summary>
228
+
/// <returns>Returns the path of the installation directory.</returns>
229
+
static std::string GetInstallDirectory();
230
+
218
231
/// <summary>
219
232
/// Initialize and start the application ready for usage.
0 commit comments