This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
semantic-release-bot 6f6a2f9bd3 chore(release): v1.1.0
# [1.1.0](https://gitlab.com/mfgames-cil/mfgames-locking-cil/compare/v1.0.0...v1.1.0) (2021-01-22)

### Features

* making library available for .NET Core 5 ([54d05c8](54d05c8485))
* removing two proposed features that do not fit the pattern ([a161673](a161673e36))
2021-01-22 01:00:57 +00:00
scripts build: adding versioning and updating 2021-01-21 18:02:19 -06:00
src ci: slow down tests more 2021-01-21 18:52:45 -06:00
.editorconfig chore: cleaning up code and reformatting 2021-01-20 19:22:18 -06:00
.envrc feat: making library available for .NET Core 5 2021-01-20 20:54:03 -06:00
.gitignore build: adding versioning and updating 2021-01-21 18:02:19 -06:00
.gitlab-ci.yml ci: missed a npx 2021-01-21 18:49:27 -06:00
.tool-versions ci: install node for building 2021-01-21 18:25:40 -06:00
LICENSE.txt Initial commit. 2018-01-18 16:16:01 -06:00
MfGames.Locking.sln feat: rebuilding as .NET Core 2.1 library 2018-07-17 13:13:08 -05:00
MfGames.Locking.sln.DotSettings test: cleaning up tests for locking 2021-01-21 17:33:53 -06:00
README.md Initial commit. 2018-01-18 16:16:01 -06:00
package.json chore(release): v1.1.0 2021-01-22 01:00:57 +00:00
yarn.lock build: adding versioning and updating 2021-01-21 18:02:19 -06:00

README.md

MfGames.Locking CIL

This a small collection of classes that provide some simplification while working with locking in C# applications.

//using MfGames.Locking;

ReaderWriterLockSlim locker;

using (new ReadLock(locker))
{
    // Do something.
}