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 295321da0a chore(release): v1.1.2
## [1.1.2](https://gitlab.com/mfgames-cil/mfgames-locking-cil/compare/v1.1.1...v1.1.2) (2021-09-04)

### Bug Fixes

* updating package-lock.json ([d000882](d000882f96))
* working on build patterns ([7594b73](7594b73846))
* working on dependencies ([ba538c0](ba538c0d86))
2021-09-04 08:12:17 +00:00
.husky build: working on build and ci 2021-09-03 21:33:54 -05: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 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.2 2021-09-04 08:12:17 +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.2 2021-09-04 08:12:17 +00:00
package.json chore(release): v1.1.2 2021-09-04 08:12:17 +00:00
release.config.js fix: working on build patterns 2021-09-04 02:41:31 -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.
}