mirror of
https://github.com/ChronosX88/log4sharp.git
synced 2024-11-09 19:51:00 +00:00
Update README and add package info to csproj file
This commit is contained in:
parent
887d55c6d2
commit
073e1352af
26
README.md
26
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
|
||||||
|
@ -2,6 +2,13 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<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>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
Loading…
Reference in New Issue
Block a user