diff --git a/README.md b/README.md index 8d1c8b6..1c8e6eb 100644 --- a/README.md +++ b/README.md @@ -1 +1,27 @@ - +# Log4Sharp + +Dead-simple colorful logger for C#/.NET Core. + +I have not found any simple loggers in the .NET Core ecosystem that are not framework-specific and have easy usage, so I decided to write this logger. + +## Install + +``` +dotnet add package Log4Sharp +``` + +## Usage + +```c# +using Log4Sharp; +... +Log.Info("Hello World!"); +``` + +## Contributing + +Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. + +## License + +MIT © ChronosX88 diff --git a/src/Log4Sharp/Log4Sharp.csproj b/src/Log4Sharp/Log4Sharp.csproj index bbd1982..4c0bb9c 100644 --- a/src/Log4Sharp/Log4Sharp.csproj +++ b/src/Log4Sharp/Log4Sharp.csproj @@ -2,6 +2,13 @@ netcoreapp3.1 + Log4Sharp + 1.0.0 + ChronosX88 + logger + + Dead-simple colorful logger for C#/.NET Core. +