Files
2022-09-06 18:56:48 +00:00

1.3 KiB

author, categories, date, description, draft, slug, tags, title, images, featured_image
author categories date description draft slug tags title images featured_image
Jim Bennett
Technology
open source
api
nuget
jimlib
2014-08-10T03:34:31Z false my-first-nuget-package
Technology
open source
api
nuget
jimlib
My first NuGet package
/blogs/my-first-nuget-package/banner.png
banner.png

For pretty much every project I've worked on I've used the same set of extensions and helper classes to make my life easier. For example:

  • Fluent API on strings myString.IsNullOrEmpty() instead of string.IsNullOrEmpty(myString).
  • An ObservableCollectionEx<T> class that allows adding multiple items but only raising on CollectionChanged event.

For my latest project, I've found myself creating these all over again. Seeing as I'm using this for an open source API, I thought it might be time to wrap these up into another open source library and make it available on NuGet. Therefore I present JimLib to the world.

The source is on GitHub with the API described on the Wiki.

The package is available from NuGet.

Install using Install-Package JimBobBennett.JimLib.

Submissions and feedback are welcome. I'll be expanding this library as I go along.