diff --git a/Lager.Android/Properties/AssemblyInfo.cs b/Lager.Android/Properties/AssemblyInfo.cs index 16f095b..82650a4 100644 --- a/Lager.Android/Properties/AssemblyInfo.cs +++ b/Lager.Android/Properties/AssemblyInfo.cs @@ -26,9 +26,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] - -// Add some common permissions, these can be removed if not needed -[assembly: UsesPermission(Android.Manifest.Permission.Internet)] -[assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] +[assembly: AssemblyVersion("0.1.0")] +[assembly: AssemblyFileVersion("0.1.0")] diff --git a/Lager/Properties/AssemblyInfo.cs b/Lager/Properties/AssemblyInfo.cs index f736e33..da42889 100644 --- a/Lager/Properties/AssemblyInfo.cs +++ b/Lager/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Lager")] -[assembly: AssemblyDescription("")] +[assembly: AssemblyDescription("A cross-platform settings storage for .NET")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Lager")] @@ -26,5 +26,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("0.1.0")] +[assembly: AssemblyFileVersion("0.1.0")] diff --git a/Readme.md b/Readme.md index dbb3466..34c4022 100644 --- a/Readme.md +++ b/Readme.md @@ -2,6 +2,8 @@ Lager is an attempt to create a cross-platform settings storage for .NET +.NET 4.5 and Xamarin.Android is supported as of version 0.1.0 + It uses [Akavache](https://github.com/akavache/Akavache) as a simple storage provider, but I'm playing with the thought of using the respective native settings storage for each platform. Currently Lager can write and read every type of object that can be stored by Akavache.