2 implementations of GetFileName
Microsoft.Arcade.Common (1)
FileSystem.cs (1)
22
public string?
GetFileName
(string? path) => Path.GetFileName(path);
Microsoft.Arcade.Test.Common (1)
MockFileSystem.cs (1)
47
public string?
GetFileName
(string? path) => Path.GetFileName(path);
3 references to GetFileName
Microsoft.DotNet.Helix.Sdk (3)
CreateXHarnessAndroidWorkItems.cs (1)
87
Log.LogError($"Unsupported payload file `{fileSystem.
GetFileName
(apkPath)}`; expecting .apk or .zip");
CreateXHarnessAppleWorkItems.cs (1)
180
string appName = isAlreadyArchived ? $"{fileSystem.GetFileNameWithoutExtension(appFolderPath)}.app" : fileSystem.
GetFileName
(appFolderPath);
ProvisioningProfileProvider.cs (1)
226
=> _fileSystem.
GetFileName
(GetProvisioningProfileUrl(platform))