-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from hanssens/vnext
Release v2.0.0 - final
- Loading branch information
Showing
7 changed files
with
156 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using Hanssens.Net; | ||
|
||
namespace LocalStorageTests | ||
{ | ||
internal static class TestHelpers | ||
{ | ||
/// <summary> | ||
/// Configuration that can be used for initializing a unique LocalStorage instance. | ||
/// </summary> | ||
internal static ILocalStorageConfiguration UniqueInstance() | ||
{ | ||
return new LocalStorageConfiguration() | ||
{ | ||
Filename = Guid.NewGuid().ToString() | ||
}; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp1.0;netstandard1.3;net46</TargetFrameworks> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Authors>Juliën Hanssens</Authors> | ||
<Company /> | ||
<PackageProjectUrl>https://github.com/hanssens/localstorage-for-dotnet</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/hanssens/localstorage-for-dotnet</RepositoryUrl> | ||
<PackageTags>c#, dotnet, local, storage</PackageTags> | ||
<PackageTags>c#, dotnet, storage, cache, nosql, lightweight</PackageTags> | ||
<Description>A simple and lightweight tool for persisting data in dotnet (core) apps.</Description> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageIconUrl>https://d17oy1vhnax1f7.cloudfront.net/items/1x2w321G3u3x2z0g120Q/hanssens-beer.png</PackageIconUrl> | ||
<PackageLicenseUrl>https://github.com/hanssens/localstorage-for-dotnet/blob/master/LICENSE</PackageLicenseUrl> | ||
<Version>1.1.0</Version> | ||
<Title>LocalStorage</Title> | ||
<Version>2.0.0</Version> | ||
<RootNamespace>Hanssens.Net</RootNamespace> | ||
<PackageReleaseNotes>See the releases page on GitHub for release notes: | ||
https://github.com/hanssens/localstorage-for-dotnet/releases</PackageReleaseNotes> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" /> | ||
<Folder Include="Helpers" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dotnet pack ./LocalStorage/LocalStorage.csproj -c Release --include-symbols |