From 593bb2545f7914de55e6273fa4d2bae1f62f37a0 Mon Sep 17 00:00:00 2001 From: William Bradley Date: Mon, 8 Jan 2018 19:27:04 +1300 Subject: [PATCH] Fixed name mismatch. --- .../Platforms/UWP/Models/FileSystem/IUWPStorageContainer.cs | 2 +- Platform/Platforms/UWP/Models/FileSystem/UWPFileContainer.cs | 2 +- Platform/Platforms/UWP/Models/FileSystem/UWPFolderContainer.cs | 2 +- Platform/Platforms/UWP/Services/UWPFutureAccessManager.cs | 2 +- version.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Platform/Platforms/UWP/Models/FileSystem/IUWPStorageContainer.cs b/Platform/Platforms/UWP/Models/FileSystem/IUWPStorageContainer.cs index fd372c0..01cb3ca 100644 --- a/Platform/Platforms/UWP/Models/FileSystem/IUWPStorageContainer.cs +++ b/Platform/Platforms/UWP/Models/FileSystem/IUWPStorageContainer.cs @@ -14,7 +14,7 @@ namespace PlatformBindings.Models.FileSystem { - public interface IUWPFileSystemContainer + public interface IUWPStorageContainer { IStorageItem Item { get; } } diff --git a/Platform/Platforms/UWP/Models/FileSystem/UWPFileContainer.cs b/Platform/Platforms/UWP/Models/FileSystem/UWPFileContainer.cs index 4c1e33a..c5b583a 100644 --- a/Platform/Platforms/UWP/Models/FileSystem/UWPFileContainer.cs +++ b/Platform/Platforms/UWP/Models/FileSystem/UWPFileContainer.cs @@ -17,7 +17,7 @@ namespace PlatformBindings.Models.FileSystem { - public class UWPFileContainer : FileContainer, IUWPFileSystemContainer + public class UWPFileContainer : FileContainer, IUWPStorageContainer { public UWPFileContainer(StorageFile File) { diff --git a/Platform/Platforms/UWP/Models/FileSystem/UWPFolderContainer.cs b/Platform/Platforms/UWP/Models/FileSystem/UWPFolderContainer.cs index 16fba9e..680dafb 100644 --- a/Platform/Platforms/UWP/Models/FileSystem/UWPFolderContainer.cs +++ b/Platform/Platforms/UWP/Models/FileSystem/UWPFolderContainer.cs @@ -18,7 +18,7 @@ namespace PlatformBindings.Models.FileSystem { - public class UWPFolderContainer : FolderContainer, IUWPFileSystemContainer + public class UWPFolderContainer : FolderContainer, IUWPStorageContainer { public UWPFolderContainer(StorageFolder Folder) { diff --git a/Platform/Platforms/UWP/Services/UWPFutureAccessManager.cs b/Platform/Platforms/UWP/Services/UWPFutureAccessManager.cs index e9b614a..7970ca7 100644 --- a/Platform/Platforms/UWP/Services/UWPFutureAccessManager.cs +++ b/Platform/Platforms/UWP/Services/UWPFutureAccessManager.cs @@ -30,7 +30,7 @@ public string GetFutureAccessPermission(StorageContainer Item) } IStorageItem ItemToStore = null; - if (Item is IUWPFileSystemContainer container) + if (Item is IUWPStorageContainer container) { ItemToStore = container.Item; } diff --git a/version.json b/version.json index f8bad49..e758fea 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "version": "0.2.14-alpha", + "version": "0.2.15-alpha", "publicReleaseRefSpec": [ "^refs/heads/master$", // we release out of master "^refs/heads/v\\d+\\.\\d+" // we also release branches starting with vN.N