Update README and add package info to csproj file

This commit is contained in:
ChronosX88 2020-11-01 17:01:06 +04:00
parent 887d55c6d2
commit 073e1352af
Signed by: ChronosXYZ
GPG Key ID: 085A69A82C8C511A
2 changed files with 34 additions and 1 deletions

View File

@ -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

View File

@ -2,6 +2,13 @@
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageId>Log4Sharp</PackageId>
<Version>1.0.0</Version>
<Authors>ChronosX88</Authors>
<PackageTags>logger</PackageTags>
<Description>
Dead-simple colorful logger for C#/.NET Core.
</Description>
</PropertyGroup>
<ItemGroup>