Skip to content

Commit 0974814

Browse files
committed
Forgot to actually add SpecialStorage
1 parent a1aad46 commit 0974814

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

common/CommonAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
[assembly: AssemblyTrademark("")]
88
[assembly: AssemblyCulture("")]
99

10-
[assembly: AssemblyVersion("1.1.1.0")]
11-
[assembly: AssemblyFileVersion("1.1.1.0")]
10+
[assembly: AssemblyVersion("1.1.2.0")]
11+
[assembly: AssemblyFileVersion("1.1.2.0")]

common/PCLExt.FileStorage.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>PCLExt.FileStorage</id>
5-
<version>1.0.9.1</version>
5+
<version>1.1.2.0</version>
66
<title>PCL Extension - File Storage API</title>
77
<authors>Daniel Plaisted,Aragas</authors>
88
<owners>Aragas</owners>

src/PCLExt.FileStorage/FileSystem.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ private static IFileSystem Current
6262
/// </summary>
6363
public static IFolder RoamingStorage => Current.RoamingStorage;
6464

65+
/// <summary>
66+
/// A folder representing storage which may be synced with other devices for the same user.
67+
/// </summary>
68+
public static IFolder SpecialStorage => Current.SpecialStorage;
69+
6570

6671

6772

0 commit comments

Comments
 (0)