2021-08-04 00:40:09 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2021-08-16 22:30:45 +02:00
|
|
|
|
<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>
|
2021-11-04 03:28:01 +01:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2021-08-07 15:34:42 +02:00
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
2021-08-29 23:15:34 +02:00
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
2021-08-07 15:34:42 +02:00
|
|
|
|
<PackageId>WTelegramClient</PackageId>
|
2021-11-04 03:28:01 +01:00
|
|
|
|
<Version>0.0.0</Version>
|
2021-08-04 10:17:09 +02:00
|
|
|
|
<Authors>Wizou</Authors>
|
2021-11-04 03:28:01 +01:00
|
|
|
|
<Description>Telegram Client API library written 100% in C# and .NET Standard | Latest MTProto & API layer version</Description>
|
2022-01-12 00:37:55 +01:00
|
|
|
|
<Copyright>Copyright © Olivier Marcoux 2021-2022</Copyright>
|
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-11-04 03:28:01 +01:00
|
|
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
2021-08-07 15:34:42 +02:00
|
|
|
|
<RepositoryUrl>https://github.com/wiz0u/WTelegramClient.git</RepositoryUrl>
|
|
|
|
|
|
<RepositoryType>git</RepositoryType>
|
2021-11-04 03:28:01 +01:00
|
|
|
|
<PackageTags>Telegram;Client;Api;UserBot;MTProto;TLSharp;OpenTl</PackageTags>
|
2021-11-04 02:41:04 +01:00
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
2021-08-29 23:15:34 +02:00
|
|
|
|
<NoWarn>IDE0079;0419;1573;1591</NoWarn>
|
2022-01-03 18:15:32 +01:00
|
|
|
|
<DefineConstants>TRACE;OBFUSCATION</DefineConstants>
|
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-18 00:12:33 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-31 02:56:51 +01:00
|
|
|
|
<None Include="..\.github\dev.yml" Link="Data\dev.yml" />
|
2021-11-20 12:54:49 +01:00
|
|
|
|
<None Include="..\.github\release.yml" Link="Data\release.yml" />
|
2021-11-04 02:41:04 +01:00
|
|
|
|
<None Include="..\EXAMPLES.md" Link="Data\EXAMPLES.md" />
|
2021-11-20 12:54:49 +01:00
|
|
|
|
<None Include="..\FAQ.md" Link="Data\FAQ.md" />
|
2021-08-19 09:28:56 +02:00
|
|
|
|
<None Include="..\README.md" Link="Data\README.md" Pack="true" PackagePath="\" />
|
2021-11-20 12:54:49 +01:00
|
|
|
|
<None Include="..\logo.png" Link="Data\logo.png" Pack="true" PackagePath="\" />
|
2021-08-04 10:11:07 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2021-08-04 00:40:09 +02:00
|
|
|
|
<ItemGroup>
|
2021-12-01 15:50:35 +01:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
|
2021-08-04 00:40:09 +02:00
|
|
|
|
</ItemGroup>
|
2021-08-16 22:30:45 +02:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
2021-08-08 16:35:05 +02:00
|
|
|
|
<PackageReference Include="IndexRange" Version="1.0.0" />
|
|
|
|
|
|
<PackageReference Include="System.Memory" Version="4.5.4" />
|
2021-08-16 22:30:45 +02:00
|
|
|
|
<PackageReference Include="System.Text.Json" Version="5.0.2" />
|
2021-08-04 00:40:09 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|