Coroutine/Coroutine/Coroutine.csproj

28 lines
1.2 KiB
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>
2022-09-14 19:41:40 +02:00
<TargetFrameworks>net45;netstandard2.0;net6.0</TargetFrameworks>
2020-06-13 03:12:26 +02:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2023-02-23 19:11:10 +01:00
<IsTrimmable>true</IsTrimmable>
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>
2023-02-23 19:11:38 +01:00
<VersionPrefix>2.1.5</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>
2022-09-14 19:41:40 +02:00
<ItemGroup Condition="'$(TargetFramework)'=='net45'">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
2019-08-05 19:16:04 +02:00
</Project>