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>
2022-12-29 22:33:28 +01:00
<Description > Telegram Client API (MTProto) library written 100% in C# and .NET Standard | Latest API layer: 151 Release Notes: $(ReleaseNotes.Replace("|", "%0D%0A").Replace(" - ","%0D%0A- ").Replace(" ", "%0D%0A%0D%0A"))</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>
2022-12-02 01:42:39 +01:00
<PackageTags > Telegram;MTProto;Client;Api;UserBot;TLSharp</PackageTags>
2021-11-04 02:41:04 +01:00
<PackageReadmeFile > README.md</PackageReadmeFile>
2022-11-12 19:40:34 +01:00
<PackageReleaseNotes > $(ReleaseNotes.Replace("|", "%0D%0A").Replace(" - ","%0D%0A- ").Replace(" ", "%0D%0A%0D%0A"))</PackageReleaseNotes>
2022-10-12 23:25:15 +02:00
<NoWarn > IDE0079;0419;1573;1591;NETSDK1138</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>
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> -->
2021-08-16 22:30:45 +02:00
<ItemGroup Condition= "'$(TargetFramework)' == 'netstandard2.0'" >
2022-05-31 14:28:37 +02:00
<PackageReference Include= "IndexRange" Version= "1.0.2" />
<PackageReference Include= "System.Memory" Version= "4.5.5" />
2022-09-02 23:02:44 +02:00
<PackageReference Include= "System.Text.Json" Version= "6.0.5" />
2021-08-04 00:40:09 +02:00
</ItemGroup>
</Project>