This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
del alias:cd -Force # Remove builtin cd alias to Set-Location | |
function cd { | |
$pwd = Get-Location | |
if ($args.Count -eq 0) { | |
Set-Location ~ | |
} elseif ($args[0] -eq "-") { | |
Set-Location @global:OLDPWD | |
} else { | |
Set-Location @args | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HashSet<string> GetCommonDatasetNames(string oldIdentityId, string newIdentityId){ | |
HashSet<string> newNameSet = new HashSet<string>(); | |
HashSet<string> oldNameSet = new HashSet<string>(); | |
if(oldIdentityId != null && newIdentityId != null){ | |
List<DatasetMetadata> newDatasets = GetDatasets(newIdentityId); | |
List<DatasetMetadata> oldDatasets = GetDatasets(oldIdentityId); | |
foreach(DatasetMetadata oldMetaData in oldDatasets){ | |
oldNameSet.Add(oldMetaData.DatasetName); | |
} | |
foreach(DatasetMetadata newMetaData in newDatasets){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/solid/solid/CMakeLists.txt b/solid/solid/CMakeLists.txt | |
index a7f1f07..c2099dc 100644 | |
--- a/solid/solid/CMakeLists.txt | |
+++ b/solid/solid/CMakeLists.txt | |
@@ -287,6 +287,15 @@ if(NOT WIN32 AND NOT APPLE) | |
backends/upower/upowergenericinterface.cpp | |
) | |
+ message(STATUS "Building Solid PhonePower backend." ) | |
+ set(solid_LIB_SRCS ${solid_LIB_SRCS} |