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 8c09c36e88 chore(release): v1.1.5
## [1.1.5](https://gitlab.com/mfgames-cil/mfgames-locking-cil/compare/v1.1.4...v1.1.5) (2021-09-11)

### Bug Fixes

* **nuget:** fixing packaging and versioning ([1c375c4](1c375c45cc))
* **nuget:** fixing packaging and versioning ([0ce47dd](0ce47dd8d1))
* **nuget:** fixing packaging and versioning ([7bc5aac](7bc5aacc4b))
2021-09-11 19:01:55 +00:00
.husky build: working on build and ci 2021-09-03 21:33:54 -05:00
src fix(nuget): fixing packaging and versioning 2021-09-11 13:35:07 -05: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 fix: working on build patterns 2021-09-04 02:41:31 -05:00
.tool-versions ci: install node for building 2021-01-21 18:25:40 -06:00
CHANGELOG.md chore(release): v1.1.5 2021-09-11 19:01:55 +00: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
commitlint.config.js build: working on build and ci 2021-09-03 21:33:54 -05:00
package-lock.json chore(release): v1.1.5 2021-09-11 19:01:55 +00:00
package.json chore(release): v1.1.5 2021-09-11 19:01:55 +00:00
release.config.js fix(nuget): fixing packaging and versioning 2021-09-11 13:59:10 -05: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.
}