Skip to content

Commit 23c569b

Browse files
committed
Published v1.0.1 to nuget with RemoveItem()
1 parent 288a4dc commit 23c569b

4 files changed

+11
-3
lines changed

DotNetCoreMemoryCacheService.sln

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNetCoreMemoryCacheServic
77
EndProject
88
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "example", "example\example.csproj", "{49A216CF-8C89-4618-8CEE-FC09518A783E}"
99
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Docs", "Docs", "{E3599094-D8BD-413C-ACDE-229B3D82B3B0}"
11+
ProjectSection(SolutionItems) = preProject
12+
changes.md = changes.md
13+
LICENSE.txt = LICENSE.txt
14+
readme.md = readme.md
15+
EndProjectSection
16+
EndProject
1017
Global
1118
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1219
Debug|Any CPU = Debug|Any CPU

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Once a new item is added to the category, the cache for that category becomes in
5353
### Install
5454
Install from [nuget](https://www.nuget.org/packages/GeekyMonkey.DotNetCoreMemoryCacheService/) by running
5555

56-
`dotnet add package GeekyMonkey.DotNetCoreMemoryCacheService --version 1.0.0`
56+
`dotnet add package GeekyMonkey.DotNetCoreMemoryCacheService`
5757

5858
### Register Services
5959
In your application startup, register the following two services with the dependency injection system.

changes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55

66
---
7-
## Not yet published
7+
## Version 1.0.1 - 3 March 2018
88

99
* Added `RemoveItem(string cacheKey)` function
1010

1111
---
12-
## Version 1.0.0
12+
## Version 1.0.0 - 3 March 2018
1313

1414
* `ClearCacheGroup(string groupName)`
1515
* `ClearAll()`

source/DotNetCoreMemoryCacheService.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<PackageReleaseNotes>Initial release is not at all "complete". But it does everything that I need it to do for my project. Feel free to make a pull request if you need additional functionality. Should be easy to add to.</PackageReleaseNotes>
1818
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1919
<PackageIconUrl>http://geekymonkey.com/favicon.ico</PackageIconUrl>
20+
<Version>1.0.1</Version>
2021
</PropertyGroup>
2122

2223
<ItemGroup>

0 commit comments

Comments
 (0)