Mendz.Library is on GitHub and NuGet

I did the basics. I followed the steps. Finally, I have my first library project published to both GitHub and NuGet. Mendz.Library 1.0.0 is now live!

Mendz.Library is my class library project for defining helper and utility classes or types. Version 1.0.0 contains the definitions for two classes:
  • IDGenerator - represents an ID generator.
  • SingletonBase - the base class for defining singletons.
Note that these classes are not new. They were in my .Net Core 1.1. version of Mendz.Library, which I talked about in various As I See Tech articles back in May/June of this year. The new version of Mendz.Library now has only two classes, instead of three (the ResultInfo class has been moved to Mendz.Data, which I will cover in my future blogs).

The source codes are published at https://github.com/etmendz/Mendz.Library. Mendz.Library is a .Net Standard 2.0 class library project created and maintained with Visual Studio 2017 Community Edition set to build using C# 7.x (latest).

The NuGet package is available at https://www.nuget.org/packages/Mendz.Library/. Mendz.Library 1.0.0 is the first and latest stable release.

Expect the Mendz.Library solution in GitHub to grow with more content as I continue to work on it. Expect the Mendz.Library package in NuGet to be updated as I continue to improve on using NuGet and its features. Comments are welcome!

Mendz class library projects are using the Apache License, Version 2.0.

Comments