Skip to content

Latest commit

 

History

History
77 lines (53 loc) · 3.08 KB

README.md

File metadata and controls

77 lines (53 loc) · 3.08 KB

net-tools

Net Industry repository/playground for any .NET reusable code.

Build Status

Net.Core

Contains a set of .NET framework namespaces with no other dependencies, such as:

  • DependencyInjection: generic attributes for dependency injection registration
  • Collections: mostly LINQ extension methods to make working with LINQ to objects easier
  • Enums: Easier Enum parsing/handling/attributing
  • Reflection: Improve working with attributes
  • Text: String formatting and checking utilities
  • ToExtensions: object extensions to allow easier conversion from one object to another

install from nuget:

install-package Net.Core

Net.Autofac

Contains modules and classes to simplify setting up Autofac. Automatic scanning and registration of types based on attributes. Helps preventing me from having to do registration in most common scenario's

install from nuget:

install-package Net.Autofac

Net.EasyNetQ

Contains experiments and additions for EasyNetQ (depends on Autofac too), to implement a Nancy-like pipeline for message processing in Autofac, and add (very basic) Correlation, Locking and Saga support

install from nuget:

install-package Net.EasyNetQ

Net.FluentMigrator

Contains helpers to simplify the usage of FluentMigrator

install from nuget:

install-package Net.FluentMigrator

Net.Web

Contains helpers for Asp.Net MVC

install from nuget:

install-package Net.Web

The MIT License (MIT)

Copyright (c) 2014 Wiebe Tijsma

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.