A .net library for common input/output tasks.
To get started with Rhythm IO you will be the following;
- .net 6+ web project
- Install the Rhythm.IO NuGet package
Once installed add the following to your Program.cs during the WebApplicationBuilder
before Build()
is called.
builder.AddRhythmIO();
Alternatively if you are using Startup.cs ConfigureServices(IServiceCollection services)
add the following:
public void ConfigureServices(IServiceCollection services) {
services.AddRhythmIO();
}
If you would like to contibute please check our contributing guide!