added a logo and added readme to package

This commit is contained in:
Ell 2021-11-07 15:29:40 +01:00
parent 07623ddc1a
commit 02d16ee81d
3 changed files with 12 additions and 4 deletions

View File

@ -3,14 +3,21 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<Authors>Ellpeck</Authors>
<Description>A simple implementation of Unity's Coroutines to be used for any C# project</Description>
<PackageTags>coroutine utility unity</PackageTags>
<PackageProjectUrl>https://github.com/Ellpeck/Coroutine</PackageProjectUrl>
<RepositoryUrl>https://github.com/Ellpeck/Coroutine</RepositoryUrl>
<PackageLicenseUrl>https://github.com/Ellpeck/Coroutine/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Logo.png</PackageIcon>
<VersionPrefix>2.1.0</VersionPrefix>
</PropertyGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="" />
<None Include="../Logo.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>

BIN
Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,5 +1,6 @@
# Coroutine
A simple implementation of Unity's Coroutines to be used for any C# project
![The Coroutine logo](https://raw.githubusercontent.com/Ellpeck/Coroutine/main/Logo.png)
**Coroutine** is a simple implementation of Unity's Coroutines to be used for any C# project
# Features
Coroutine adds the ability to run coroutines. Coroutines are methods that run in parallel to the rest of the application through the use of an `Enumerator`. This allows for the coroutine to pause execution using the `yield return` statement.