Skip to content

Commit

Permalink
Update package info
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno committed Dec 14, 2017
1 parent 7205275 commit 221b74b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/MonkeyCache.LiteDB/MonkeyCache.LiteDB.csproj
Expand Up @@ -19,6 +19,11 @@
<PackageTags>xamarin, windows, ios, android, cache, http</PackageTags>
<Title>MonkeyCache.LiteDB - A .NET Caching Library</Title>
<Description>A simple caching library to cache any data structure for a specific amount of time in any .NET application. Additionally, offers simple HTTP methods for caching web request data. Powered by LiteDB.</Description>

<PackageReleaseNotes>See: See: https://github.com/jamesmontemagno/MonkeyCache</PackageReleaseNotes>
<RepositoryUrl>See: https://github.com/jamesmontemagno/MonkeyCache </RepositoryUrl>
<Copyright>2017 Refractored LLC &amp; James Montemagno</Copyright>

<RootNamespace>MonkeyCache</RootNamespace>

<LangVersion>default</LangVersion>
Expand All @@ -28,6 +33,7 @@
<DefineConstants Condition=" '$(TargetFramework)' == 'MonoAndroid50' ">$(DefineConstants);LITEDB</DefineConstants>
<DefineConstants Condition=" '$(TargetFramework)' == 'Xamarin.Mac20' ">$(DefineConstants);LITEDB</DefineConstants>
<DefineConstants Condition=" '$(TargetFramework)' == 'Xamarin.iOS10' ">$(DefineConstants);LITEDB</DefineConstants>

</PropertyGroup>


Expand Down
7 changes: 6 additions & 1 deletion src/MonkeyCache/MonkeyCache.csproj
Expand Up @@ -19,14 +19,19 @@
<PackageTags>xamarin, windows, ios, android, cache, http</PackageTags>
<Title>MonkeyCache - A .NET Caching Library</Title>
<Description>A simple caching library to cache any data structure for a specific amount of time in any .NET application. Additionally, offers simple HTTP methods for caching web request data. Powered by SQLite.</Description>
<Copyright>2017 Refractored LLC &amp; James Montemagno</Copyright>
<RepositoryUrl>https://github.com/jamesmontemagno/MonkeyCache</RepositoryUrl>
<PackageReleaseNotes>See: https://github.com/jamesmontemagno/MonkeyCache </PackageReleaseNotes>

<LangVersion>default</LangVersion>

<DefineConstants Condition=" '$(TargetFramework)' == 'netstandard2.0' ">$(DefineConstants);SQLITE</DefineConstants>
<DefineConstants Condition=" '$(TargetFramework)' == 'uap10.0.16299' ">$(DefineConstants);SQLITE</DefineConstants>
<DefineConstants Condition=" '$(TargetFramework)' == 'MonoAndroid50' ">$(DefineConstants);SQLITE</DefineConstants>
<DefineConstants Condition=" '$(TargetFramework)' == 'Xamarin.Mac20' ">$(DefineConstants);SQLITE</DefineConstants>
<DefineConstants Condition=" '$(TargetFramework)' == 'Xamarin.iOS10' ">$(DefineConstants);SQLITE</DefineConstants>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

</PropertyGroup>


Expand Down

0 comments on commit 221b74b

Please sign in to comment.