1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Removed temporary member resolution logic from custom build properties

This commit is contained in:
Yuvan Wickramasinghe 2025-05-13 15:29:01 -07:00
parent 524ebaa914
commit 0cf382532c
No known key found for this signature in database
3 changed files with 0 additions and 493 deletions

View file

@ -3255,18 +3255,14 @@ namespace IDE
case .SemVer(let ver):
String unresolvedVersion = scope String(ver.mVersion);
CustomBuildProperties.ResolveString(unresolvedVersion, ver.mVersion);
case .Path(let path):
String unresolvedPath = scope String(path);
CustomBuildProperties.ResolveString(unresolvedPath, path);
case .Git(let url, let ver):
String unresolvedUrl = scope String(url);
CustomBuildProperties.ResolveString(unresolvedUrl, url);
String unresolvedVersion = scope String(ver.mVersion);
CustomBuildProperties.ResolveString(unresolvedVersion, ver.mVersion);
}
String verConfigDir = mWorkspace.mDir;