1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Missed a couple places where custom build properties should be loaded.

This commit is contained in:
LAPTOP-NV8MPI8C\Yuvan Wickramasinghe 2025-03-27 17:16:26 -07:00
parent 80a72f991d
commit da31757fa7
No known key found for this signature in database

View file

@ -12831,12 +12831,14 @@ namespace IDE
{ {
mWorkspace.mName = new String(); mWorkspace.mName = new String();
Path.GetFileName(mWorkspace.mDir, mWorkspace.mName); Path.GetFileName(mWorkspace.mDir, mWorkspace.mName);
CustomBuildProperties.Load();
LoadWorkspace(mVerb); LoadWorkspace(mVerb);
} }
else if (mWorkspace.IsSingleFileWorkspace) else if (mWorkspace.IsSingleFileWorkspace)
{ {
mWorkspace.mName = new String(); mWorkspace.mName = new String();
Path.GetFileNameWithoutExtension(mWorkspace.mCompositeFile.mFilePath, mWorkspace.mName); Path.GetFileNameWithoutExtension(mWorkspace.mCompositeFile.mFilePath, mWorkspace.mName);
CustomBuildProperties.Load();
LoadWorkspace(mVerb); LoadWorkspace(mVerb);
} }