Update README and csproj: add repository URL and license

This commit is contained in:
ChronosX88 2020-11-01 17:18:15 +04:00
parent 073e1352af
commit 81c2aff354
Signed by: ChronosXYZ
GPG Key ID: 085A69A82C8C511A
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@
Dead-simple colorful logger for C#/.NET Core. 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. 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. Mostly inspired by various Golang loggers.
## Install ## Install

View File

@ -3,12 +3,15 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>netcoreapp3.1</TargetFramework>
<PackageId>Log4Sharp</PackageId> <PackageId>Log4Sharp</PackageId>
<Version>1.0.0</Version> <Version>1.0.1</Version>
<Authors>ChronosX88</Authors> <Authors>ChronosX88</Authors>
<PackageTags>logger</PackageTags> <PackageTags>logger</PackageTags>
<Description> <Description>
Dead-simple colorful logger for C#/.NET Core. Dead-simple colorful logger for C#/.NET Core.
</Description> </Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/ChronosX88/log4sharp</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>