WTelegramClient/src/WTelegramClient.csproj

59 lines
2.5 KiB
XML
Raw Normal View History

2021-08-04 00:40:09 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
2021-08-08 16:35:05 +02:00
<LangVersion>latest</LangVersion>
2021-08-04 00:40:09 +02:00
<RootNamespace>WTelegram</RootNamespace>
2021-08-07 15:34:42 +02:00
<Deterministic>true</Deterministic>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageId>WTelegramClient</PackageId>
2021-08-08 16:35:05 +02:00
<Description>Telegram client library written 100% in C# and .NET Standard</Description>
2021-08-04 10:17:09 +02:00
<Authors>Wizou</Authors>
2021-08-07 15:34:42 +02:00
<Copyright>Copyright © Olivier Marcoux 2021</Copyright>
<PackageIcon>logo.png</PackageIcon>
2021-08-07 15:34:42 +02:00
<PackageTags>Telegram;Client;Api;UserBot;MTProto</PackageTags>
2021-08-08 11:09:44 +02:00
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2021-08-04 10:17:09 +02:00
<PackageProjectUrl>https://github.com/wiz0u/WTelegramClient</PackageProjectUrl>
2021-08-07 15:34:42 +02:00
<RepositoryUrl>https://github.com/wiz0u/WTelegramClient.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
2021-08-08 14:58:49 +02:00
<!--<PackageReadmeFile>README.md</PackageReadmeFile> see https://github.com/NuGet/Home/issues/10791 -->
2021-08-07 15:34:42 +02:00
</PropertyGroup>
<PropertyGroup>
<NoWarn>IDE0079;1701;1702;1573;1591;0419</NoWarn>
2021-08-04 00:40:09 +02:00
</PropertyGroup>
2021-08-04 10:11:07 +02:00
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
2021-08-20 03:20:20 +02:00
<None Include="..\.github\ci.yml" Link="Data\ci.yml" />
<None Include="..\logo.png" Link="Data\logo.png" Pack="true" PackagePath="\" />
<None Include="..\README.md" Link="Data\README.md" Pack="true" PackagePath="\" />
2021-08-20 03:20:20 +02:00
<None Include="..\.github\release.yml" Link="Data\release.yml" />
2021-08-04 10:11:07 +02:00
</ItemGroup>
2021-08-04 00:40:09 +02:00
<ItemGroup>
2021-08-07 15:34:42 +02:00
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
2021-08-04 00:40:09 +02:00
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
2021-08-08 16:35:05 +02:00
<PackageReference Include="IndexRange" Version="1.0.0" />
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
<PackageReference Include="System.Formats.Asn1" Version="5.0.0" />
2021-08-08 16:35:05 +02:00
<PackageReference Include="System.Memory" Version="4.5.4" />
<PackageReference Include="System.Text.Json" Version="5.0.2" />
2021-08-08 16:35:05 +02:00
<PackageReference Include="TA.System.Runtime.CompilerServices.RuntimeHelpers.GetSubArray" Version="1.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2021-08-04 00:40:09 +02:00
</ItemGroup>
</Project>