Skip to content

Commit

Permalink
task: some simple tidying of text
Browse files Browse the repository at this point in the history
  • Loading branch information
alastairtree committed May 13, 2018
1 parent 6941cbc commit 0a46273
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 7 deletions.
63 changes: 63 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary

###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
6 changes: 3 additions & 3 deletions LazyCache/LazyCache.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--EXTERNAL_PROPERTIES: APPVEYOR_BUILD_NUMBER-->
<!--EXTERNAL_PROPERTIES: APPVEYOR_BUILD_NUMBER-->
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
Expand All @@ -12,13 +12,13 @@
<AssemblyVersion>$(LazyCacheVersion).$(AppVeyorBuildNumber)</AssemblyVersion>
<Authors>https://github.com/alastairtree</Authors>
<Company>https://github.com/alastairtree</Company>
<Description>Lazy cache is a simple, thread safe in-memory caching service</Description>
<Description>Lazy cache is a simple, thread safe, in-memory caching library that makes it easy to add high performance caching to your dotnet app.</Description>
<PackageProjectUrl>https://github.com/alastairtree/LazyCache</PackageProjectUrl>
<Copyright>Copyright 2014 - 2018 Alastair Crabtree</Copyright>
<PackageLicenseUrl>https://github.com/alastairtree/LazyCache/blob/master/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/alastairtree/LazyCache/master/artwork/logo-128.png</PackageIconUrl>
<RepositoryUrl>https://github.com/alastairtree/LazyCache</RepositoryUrl>
<PackageTags>Caching Performance Speed In-memory ObjectCache Generics ServiceCacheing Lazy Cache Lazy-Load MemoryCache CachingService AppCache ApplicationCache Memcached</PackageTags>
<PackageTags>Caching Performance Speed In-memory IMemoryCache Generics ServiceCacheing Lazy Cache Lazy-Load MemoryCache CachingService AppCache ApplicationCache Memcached</PackageTags>
<PackageReleaseNotes>See https://raw.githubusercontent.com/alastairtree/LazyCache/master/ReleaseNotes.md</PackageReleaseNotes>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ For .net framework 4.0 use LazyCache 0.6

## Documentation

* [the wiki](https://github.com/alastairtree/LazyCache/wiki)
* [The wiki](https://github.com/alastairtree/LazyCache/wiki)
* [Adding caching to a .net application and make it faster](https://alastaircrabtree.com/the-easy-way-to-add-caching-to-net-application-and-make-it-faster-is-called-lazycache/)

## Sample Application

See [/Samples/CacheDatabaseQueriesApiSample](https://github.com/alastairtree/LazyCache/tree/master/CacheDatabaseQueriesApiSample) for an example of how to use LazyCache to cache the results of an Entity framework query in
See [CacheDatabaseQueriesApiSample](/CacheDatabaseQueriesApiSample) for an example of how to use LazyCache to cache the results of an Entity framework query in
a web api controller. Watch how the cache saves trips to the database and results are returned to the client far quicker from the
in-memory cache
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ image: Visual Studio 2017
configuration: Release
environment:
LazyCacheVersion: 2.0.0
LazyCacheVersionSuffix: -beta01
LazyCacheVersionSuffix: -beta03
LazyCacheAspNetCoreVersion: 2.0.0
LazyCacheAspNetCoreVersionSuffix: -beta01
LazyCacheAspNetCoreVersionSuffix: -beta03
build_script:
- ps: '& .\build.ps1'
deploy: off

0 comments on commit 0a46273

Please sign in to comment.