2021-08-04 00:40:09 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
|
<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-06 01:54:29 +02:00
|
|
|
|
<Description>Telegram client library written 100% in C# and .NET Core</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>
|
|
|
|
|
|
<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 Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<NoWarn>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" />
|
2021-08-08 14:58:49 +02:00
|
|
|
|
<!--<None Include="..\README.md" Pack="true" PackagePath=""/>-->
|
2021-08-04 10:11:07 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2021-08-04 00:40:09 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Crc32.NET" Version="1.2.0" />
|
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>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|