Rene.Utils is a set of useful utilities and extensions of recurrent usage
Is a small library that complements .NET with useful helpers clases. I wrote a version of Rene.Utils with VB.NET (follies of youth) for .NET 2, 3.5,.. and mantein this version over the years. This is a new project build from scratch and maintained in my freetime
I use this project to practice, techniques of testing, CI/CD, manage a open source project and so on. For this reason new features in library could take time to be avaliable in main branch. I have while write test, docs ... You can get pre-relase version from nuget or alpha branch.
DotNet Rene Utils is built using .net Standard 2.1 and supports the 4.0+ .NET Framework
as well as .NET Core
- Open a command line and switch to the directory that contains your project file.
- Use the following command to install a Rene.Utils from Nuget repository:
dotnet add package Rene.Utils.Core [-pre]
- After the command completes, look at the project file to make sure the package was installed.
You can open the
.csproj
file to see the added reference:<ItemGroup> <PackageReference Include="Rene.Utils.Core" Version="0.5.0" /> </ItemGroup>
If the version is not specified, NuGet installs the latest version of the package. You can also use the dotnet add package command to install a specific version of a Nuget package:
dotnet add package Rene.Utils.Core --version 0.3.1-preview-16
- Ensure Nuget is avaliable or install it. Instructions to install NuGet.
- Install Rene.Utils from the package manager console:
PM> Install-Package Rene.Utils.Core
Coming soon
C#
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
DotNet Rene Utils is licensed under The MIT License (MIT), check the LICENSE file for details.