mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 22:34:09 +02:00
Debugger fixes
Removing some debugger remote-requests
This commit is contained in:
parent
c2d086fe8e
commit
a32d18d962
21 changed files with 198 additions and 638 deletions
|
@ -1291,8 +1291,19 @@ namespace IDE
|
|||
if (!mProjectPath.IsEmpty)
|
||||
{
|
||||
mProjectDir.Clear();
|
||||
mProjectPath.Set(path);
|
||||
IDEUtils.FixFilePath(mProjectPath);
|
||||
mProjectPath.Clear();
|
||||
|
||||
if (!Environment.IsFileSystemCaseSensitive)
|
||||
{
|
||||
Path.GetActualPathName(path, mProjectPath);
|
||||
}
|
||||
|
||||
if (mProjectPath.IsEmpty)
|
||||
{
|
||||
mProjectPath.Set(path);
|
||||
IDEUtils.FixFilePath(mProjectPath);
|
||||
}
|
||||
|
||||
Path.GetDirectoryPath(mProjectPath, mProjectDir);
|
||||
if (structuredData.Load(ProjectFileName) case .Err)
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue