There are two places where we use System.Diagnostics.Process.Start to open an explorer window in the build folder: with an explicit button in the build window, and automatically after a build. On Windows, if the build path was input manually and with forward slashes, this call would fail. Using Path.GetFullPath() circumvents this by converting the given path to a native-compatible format.
There are two places where we use System.Diagnostics.Process.Start to open an explorer window in the build folder: with an explicit button in the build window, and automatically after a build. On Windows, if the build path was input manually and with forward slashes, this call would fail. Using Path.GetFullPath() circumvents this by converting the given path to a native-compatible format.