Coroutine/Coroutine/Coroutine.csproj

23 lines
1,007 B
XML
Raw Normal View History

2019-08-05 19:16:04 +02:00
<Project Sdk="Microsoft.NET.Sdk">
2019-06-22 17:24:50 +02:00
<PropertyGroup>
2019-08-05 19:16:04 +02:00
<TargetFramework>netstandard2.0</TargetFramework>
2020-06-13 03:12:26 +02:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2019-06-22 17:24:50 +02:00
</PropertyGroup>
2019-08-05 19:16:04 +02:00
<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>
2021-03-21 18:07:30 +01:00
<VersionPrefix>2.1.0</VersionPrefix>
2019-08-05 19:16:04 +02:00
</PropertyGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="" />
<None Include="../Logo.png" Pack="true" PackagePath="" />
</ItemGroup>
2019-08-05 19:16:04 +02:00
</Project>