Change IInteropFunctions.ReleaseIdentifier to ReleaseIdString

This commit is contained in:
Mbucari 2023-05-19 12:08:22 -06:00
parent 64d080336c
commit 607cd07b74
6 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@ namespace LibationFileManager
public void SetFolderIcon(string image, string directory) => throw new PlatformNotSupportedException();
public void DeleteFolderIcon(string directory) => throw new PlatformNotSupportedException();
public bool CanUpgrade => throw new PlatformNotSupportedException();
public string ReleaseIdentifier => throw new PlatformNotSupportedException();
public string ReleaseIdString => throw new PlatformNotSupportedException();
public Process RunAsRoot(string exe, string args) => throw new PlatformNotSupportedException();
public void InstallUpgrade(string updateBundle) => throw new PlatformNotSupportedException();
}