Coroutine/Coroutine/Coroutine.csproj

23 lines
1007 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<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>
<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>