2021-08-04 00:40:09 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2024-03-26 12:07:03 +01:00
|
|
|
|
<TargetFrameworks>netstandard2.0;net5.0;net8.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>
|
2025-01-02 00:35:34 +01:00
|
|
|
|
<Description>Telegram Client API (MTProto) library written 100% in C# and .NET Standard | Latest API layer: 196
|
2024-06-15 02:35:38 +02:00
|
|
|
|
|
|
|
|
|
|
Release Notes:
|
|
|
|
|
|
$(ReleaseNotes.Replace("|", "%0D%0A").Replace(" - ","%0D%0A- ").Replace(" ", "%0D%0A%0D%0A"))</Description>
|
2024-01-18 15:53:17 +01:00
|
|
|
|
<Copyright>Copyright © Olivier Marcoux 2021-2024</Copyright>
|
2021-08-08 11:09:44 +02:00
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2024-05-28 00:37:58 +02:00
|
|
|
|
<PackageProjectUrl>https://wiz0u.github.io/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>
|
2024-02-18 17:00:49 +01:00
|
|
|
|
<PackageTags>Telegram;MTProto;Client;Api;UserBot</PackageTags>
|
2021-11-04 02:41:04 +01:00
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
2023-07-05 15:53:48 +02:00
|
|
|
|
<PackageReleaseNotes>$(ReleaseNotes.Replace("|", "%0D%0A").Replace(" - ","%0D%0A- ").Replace(" ", "%0D%0A%0D%0A"))</PackageReleaseNotes>
|
2024-04-28 00:44:36 +02:00
|
|
|
|
<NoWarn>NETSDK1138;CS0419;CS1573;CS1591</NoWarn>
|
2024-03-28 12:13:56 +01:00
|
|
|
|
<DefineConstants>TRACE;OBFUSCATION;MTPG</DefineConstants>
|
2024-03-26 12:07:03 +01:00
|
|
|
|
<!--<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>-->
|
2021-08-04 00:40:09 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2021-08-18 00:12:33 +02:00
|
|
|
|
<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>
|
|
|
|
|
|
|
2022-11-20 17:15:57 +01:00
|
|
|
|
<!-- Disabled because SourceLink navigation prevents a clear display of the API
|
|
|
|
|
|
<ItemGroup>
|
2021-12-01 15:50:35 +01:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
|
2022-11-12 19:40:34 +01:00
|
|
|
|
</ItemGroup>-->
|
2024-03-28 12:13:56 +01:00
|
|
|
|
|
2024-04-16 15:19:12 +02:00
|
|
|
|
<ItemGroup Condition="$(DefineConstants.Contains('MTPG'))">
|
2024-04-03 21:05:07 +02:00
|
|
|
|
<ProjectReference Include="..\generator\MTProtoGenerator.csproj" OutputItemType="Analyzer" PrivateAssets="All" />
|
2024-03-28 12:13:56 +01:00
|
|
|
|
</ItemGroup>
|
2024-04-16 15:19:12 +02:00
|
|
|
|
|
2021-08-16 22:30:45 +02:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
2024-06-15 02:35:38 +02:00
|
|
|
|
<PackageReference Include="IndexRange" Version="1.0.3" />
|
2022-05-31 14:28:37 +02:00
|
|
|
|
<PackageReference Include="System.Memory" Version="4.5.5" />
|
2024-10-15 16:49:22 +02:00
|
|
|
|
<PackageReference Include="System.Text.Json" Version="6.0.10" />
|
2024-03-30 17:09:54 +01:00
|
|
|
|
<PackageReference Include="System.Collections.Immutable" Version="6.0.0" />
|
2021-08-04 00:40:09 +02:00
|
|
|
|
</ItemGroup>
|
2024-04-16 15:19:12 +02:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
|
|
|
|
|
|
<PackageReference Include="System.Collections.Immutable" Version="6.0.0" />
|
|
|
|
|
|
</ItemGroup>
|
2021-08-04 00:40:09 +02:00
|
|
|
|
|
|
|
|
|
|
</Project>
|