mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
Upgraded to netstandard.
This commit is contained in:
parent
1aa63e565a
commit
d82ade59b2
89
TLSharp.Core.old/TLSharp.Core.csproj
Normal file
89
TLSharp.Core.old/TLSharp.Core.csproj
Normal file
|
|
@ -0,0 +1,89 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{400D2544-1CC6-4D8A-A62C-2292D9947A16}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>TLSharp.Core</RootNamespace>
|
||||||
|
<AssemblyName>TLSharp.Core</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="Ionic.ZLib, Version=2.0.0.14, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\MarkerMetro.Unity.Ionic.Zlib.2.0.0.14\lib\net35\Ionic.ZLib.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Auth\Authenticator.cs" />
|
||||||
|
<Compile Include="Auth\Step1_PQRequest.cs" />
|
||||||
|
<Compile Include="Auth\Step2_DHExchange.cs" />
|
||||||
|
<Compile Include="Auth\Step3_CompleteDHExchange.cs" />
|
||||||
|
<Compile Include="MTProto\Crypto\AES.cs" />
|
||||||
|
<Compile Include="MTProto\Crypto\AuthKey.cs" />
|
||||||
|
<Compile Include="MTProto\Crypto\BigInteger.cs" />
|
||||||
|
<Compile Include="MTProto\Crypto\Crc32.cs" />
|
||||||
|
<Compile Include="MTProto\Crypto\Factorizator.cs" />
|
||||||
|
<Compile Include="MTProto\Crypto\MD5Digest.cs" />
|
||||||
|
<Compile Include="MTProto\Crypto\RSA.cs" />
|
||||||
|
<Compile Include="MTProto\Crypto\Salt.cs" />
|
||||||
|
<Compile Include="MTProto\Serializers.cs" />
|
||||||
|
<Compile Include="Network\MtProtoPlainSender.cs" />
|
||||||
|
<Compile Include="Network\MtProtoSender.cs" />
|
||||||
|
<Compile Include="Network\TcpMessage.cs" />
|
||||||
|
<Compile Include="Network\TcpTransport.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<Compile Include="Requests\AckRequest.cs" />
|
||||||
|
<Compile Include="Requests\PingRequest.cs" />
|
||||||
|
<Compile Include="Utils\UploadHelper.cs" />
|
||||||
|
<Compile Include="Session.cs" />
|
||||||
|
<Compile Include="TelegramClient.cs" />
|
||||||
|
<Compile Include="Utils\Helpers.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\TeleSharp.TL\TeleSharp.TL.csproj">
|
||||||
|
<Project>{d6144517-91d2-4880-86df-e9ff5d7f383a}</Project>
|
||||||
|
<Name>TeleSharp.TL</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
||||||
|
|
@ -6,7 +6,7 @@ namespace TLSharp.Core.Requests
|
||||||
{
|
{
|
||||||
public class AuthSendCodeRequest : MTProtoRequest
|
public class AuthSendCodeRequest : MTProtoRequest
|
||||||
{
|
{
|
||||||
|
|
||||||
public bool _phoneRegistered;
|
public bool _phoneRegistered;
|
||||||
public string _phoneCodeHash;
|
public string _phoneCodeHash;
|
||||||
public SendCodeArgs args=new SendCodeArgs();
|
public SendCodeArgs args=new SendCodeArgs();
|
||||||
|
|
|
||||||
|
|
@ -1,89 +1,23 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProjectGuid>{400D2544-1CC6-4D8A-A62C-2292D9947A16}</ProjectGuid>
|
|
||||||
<OutputType>Library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>TLSharp.Core</RootNamespace>
|
|
||||||
<AssemblyName>TLSharp.Core</AssemblyName>
|
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
||||||
<FileAlignment>512</FileAlignment>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Ionic.ZLib, Version=2.0.0.14, Culture=neutral, processorArchitecture=MSIL">
|
<Compile Remove="Requests\AuthSendCodeRequest.cs" />
|
||||||
<HintPath>..\packages\MarkerMetro.Unity.Ionic.Zlib.2.0.0.14\lib\net35\Ionic.ZLib.dll</HintPath>
|
<Compile Remove="Requests\AuthSignInRequest.cs" />
|
||||||
<Private>True</Private>
|
<Compile Remove="Requests\DownloadFileRequest.cs" />
|
||||||
</Reference>
|
<Compile Remove="Requests\InitConnectionRequest.cs" />
|
||||||
<Reference Include="System" />
|
<Compile Remove="Requests\MTProtoRequest.cs" />
|
||||||
<Reference Include="System.Core" />
|
|
||||||
<Reference Include="System.Xml.Linq" />
|
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
|
||||||
<Reference Include="Microsoft.CSharp" />
|
|
||||||
<Reference Include="System.Data" />
|
|
||||||
<Reference Include="System.Net.Http" />
|
|
||||||
<Reference Include="System.Xml" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Auth\Authenticator.cs" />
|
<PackageReference Include="Ionic.Zlib.Core" Version="1.0.0" />
|
||||||
<Compile Include="Auth\Step1_PQRequest.cs" />
|
|
||||||
<Compile Include="Auth\Step2_DHExchange.cs" />
|
|
||||||
<Compile Include="Auth\Step3_CompleteDHExchange.cs" />
|
|
||||||
<Compile Include="MTProto\Crypto\AES.cs" />
|
|
||||||
<Compile Include="MTProto\Crypto\AuthKey.cs" />
|
|
||||||
<Compile Include="MTProto\Crypto\BigInteger.cs" />
|
|
||||||
<Compile Include="MTProto\Crypto\Crc32.cs" />
|
|
||||||
<Compile Include="MTProto\Crypto\Factorizator.cs" />
|
|
||||||
<Compile Include="MTProto\Crypto\MD5Digest.cs" />
|
|
||||||
<Compile Include="MTProto\Crypto\RSA.cs" />
|
|
||||||
<Compile Include="MTProto\Crypto\Salt.cs" />
|
|
||||||
<Compile Include="MTProto\Serializers.cs" />
|
|
||||||
<Compile Include="Network\MtProtoPlainSender.cs" />
|
|
||||||
<Compile Include="Network\MtProtoSender.cs" />
|
|
||||||
<Compile Include="Network\TcpMessage.cs" />
|
|
||||||
<Compile Include="Network\TcpTransport.cs" />
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
<Compile Include="Requests\AckRequest.cs" />
|
|
||||||
<Compile Include="Requests\PingRequest.cs" />
|
|
||||||
<Compile Include="Utils\UploadHelper.cs" />
|
|
||||||
<Compile Include="Session.cs" />
|
|
||||||
<Compile Include="TelegramClient.cs" />
|
|
||||||
<Compile Include="Utils\Helpers.cs" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="packages.config" />
|
<ProjectReference Include="..\TeleSharp.TL\TeleSharp.TL.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\TeleSharp.TL\TeleSharp.TL.csproj">
|
</Project>
|
||||||
<Project>{d6144517-91d2-4880-86df-e9ff5d7f383a}</Project>
|
|
||||||
<Name>TeleSharp.TL</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
|
||||||
<Target Name="BeforeBuild">
|
|
||||||
</Target>
|
|
||||||
<Target Name="AfterBuild">
|
|
||||||
</Target>
|
|
||||||
-->
|
|
||||||
</Project>
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<packages>
|
|
||||||
<package id="DotNetZip" version="1.9.3" targetFramework="net451" />
|
|
||||||
<package id="MarkerMetro.Unity.Ionic.Zlib" version="2.0.0.14" targetFramework="net452" />
|
|
||||||
</packages>
|
|
||||||
54
TLSharp.Tests.NUnit.old/TLSharp.Tests.NUnit.csproj
Normal file
54
TLSharp.Tests.NUnit.old/TLSharp.Tests.NUnit.csproj
Normal file
|
|
@ -0,0 +1,54 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{E90B705B-19FA-43BA-B952-69957976D12C}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<RootNamespace>TLSharp.Tests.NUnit</RootNamespace>
|
||||||
|
<AssemblyName>TLSharp.Tests.NUnit</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<ConsolePause>false</ConsolePause>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release</OutputPath>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<ConsolePause>false</ConsolePause>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="nunit.framework">
|
||||||
|
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Test.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="..\TLSharp.Tests\app.config">
|
||||||
|
<Link>app.config</Link>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\TLSharp.Tests\TLSharp.Tests.csproj">
|
||||||
|
<Project>{DE5C0467-EE99-4734-95F2-EFF7A0B99924}</Project>
|
||||||
|
<Name>TLSharp.Tests</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
|
|
@ -1,54 +1,18 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProjectGuid>{E90B705B-19FA-43BA-B952-69957976D12C}</ProjectGuid>
|
|
||||||
<OutputType>Library</OutputType>
|
|
||||||
<RootNamespace>TLSharp.Tests.NUnit</RootNamespace>
|
|
||||||
<AssemblyName>TLSharp.Tests.NUnit</AssemblyName>
|
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>bin\Debug</OutputPath>
|
|
||||||
<DefineConstants>DEBUG;</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
<ConsolePause>false</ConsolePause>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<OutputPath>bin\Release</OutputPath>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
<ConsolePause>false</ConsolePause>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<PackageReference Include="MSTest.TestFramework" Version="1.3.0" />
|
||||||
<Reference Include="nunit.framework">
|
<PackageReference Include="NUnit" Version="3.10.1" />
|
||||||
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
|
||||||
</Reference>
|
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Test.cs" />
|
<ProjectReference Include="..\TLSharp.Tests\TLSharp.Tests.csproj" />
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\TLSharp.Tests\app.config">
|
|
||||||
<Link>app.config</Link>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="packages.config" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\TLSharp.Tests\TLSharp.Tests.csproj">
|
|
||||||
<Project>{DE5C0467-EE99-4734-95F2-EFF7A0B99924}</Project>
|
|
||||||
<Name>TLSharp.Tests</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ namespace TLSharp.Tests
|
||||||
[TestFixture]
|
[TestFixture]
|
||||||
public class TLSharpTestsNUnit : TLSharpTests
|
public class TLSharpTestsNUnit : TLSharpTests
|
||||||
{
|
{
|
||||||
[TestFixtureSetUp]
|
[OneTimeSetUp]
|
||||||
public void Init()
|
public void Init()
|
||||||
{
|
{
|
||||||
base.Init(o => Assert.IsNotNull(o), b => Assert.IsTrue(b));
|
base.Init(o => Assert.IsNotNull(o), b => Assert.IsTrue(b));
|
||||||
|
|
|
||||||
103
TLSharp.Tests.VS.old/TLSharp.Tests.VS.csproj
Normal file
103
TLSharp.Tests.VS.old/TLSharp.Tests.VS.csproj
Normal file
|
|
@ -0,0 +1,103 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{AFFC3B00-3E4D-4327-8F7A-08EE41E0C8B7}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>TLSharp.Tests.VS</RootNamespace>
|
||||||
|
<AssemblyName>TLSharp.Tests.VS</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
|
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
||||||
|
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
||||||
|
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
|
||||||
|
<IsCodedUITest>False</IsCodedUITest>
|
||||||
|
<TestProjectType>UnitTest</TestProjectType>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Choose>
|
||||||
|
<When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
||||||
|
</ItemGroup>
|
||||||
|
</When>
|
||||||
|
<Otherwise>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Otherwise>
|
||||||
|
</Choose>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="TLSharpTestsVs.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\TeleSharp.TL\TeleSharp.TL.csproj">
|
||||||
|
<Project>{d6144517-91d2-4880-86df-e9ff5d7f383a}</Project>
|
||||||
|
<Name>TeleSharp.TL</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="..\TLSharp.Core\TLSharp.Core.csproj">
|
||||||
|
<Project>{400d2544-1cc6-4d8a-a62c-2292d9947a16}</Project>
|
||||||
|
<Name>TLSharp.Core</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="..\TLSharp.Tests\TLSharp.Tests.csproj">
|
||||||
|
<Project>{de5c0467-ee99-4734-95f2-eff7a0b99924}</Project>
|
||||||
|
<Name>TLSharp.Tests</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="..\TLSharp.Tests\app.config">
|
||||||
|
<Link>app.config</Link>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup />
|
||||||
|
<Choose>
|
||||||
|
<When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
</ItemGroup>
|
||||||
|
</When>
|
||||||
|
</Choose>
|
||||||
|
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
||||||
|
|
@ -1,103 +1,17 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProjectGuid>{AFFC3B00-3E4D-4327-8F7A-08EE41E0C8B7}</ProjectGuid>
|
|
||||||
<OutputType>Library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>TLSharp.Tests.VS</RootNamespace>
|
|
||||||
<AssemblyName>TLSharp.Tests.VS</AssemblyName>
|
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
||||||
<FileAlignment>512</FileAlignment>
|
|
||||||
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
||||||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
|
|
||||||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
|
||||||
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
|
|
||||||
<IsCodedUITest>False</IsCodedUITest>
|
|
||||||
<TestProjectType>UnitTest</TestProjectType>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
|
||||||
|
<PackageReference Include="MSTest.TestAdapter" Version="1.3.0" />
|
||||||
|
<PackageReference Include="MSTest.TestFramework" Version="1.3.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Choose>
|
|
||||||
<When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
|
|
||||||
<ItemGroup>
|
|
||||||
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
|
||||||
</ItemGroup>
|
|
||||||
</When>
|
|
||||||
<Otherwise>
|
|
||||||
<ItemGroup>
|
|
||||||
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Otherwise>
|
|
||||||
</Choose>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="TLSharpTestsVs.cs" />
|
<ProjectReference Include="..\TLSharp.Tests\TLSharp.Tests.csproj" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\TeleSharp.TL\TeleSharp.TL.csproj">
|
</Project>
|
||||||
<Project>{d6144517-91d2-4880-86df-e9ff5d7f383a}</Project>
|
|
||||||
<Name>TeleSharp.TL</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="..\TLSharp.Core\TLSharp.Core.csproj">
|
|
||||||
<Project>{400d2544-1cc6-4d8a-a62c-2292d9947a16}</Project>
|
|
||||||
<Name>TLSharp.Core</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="..\TLSharp.Tests\TLSharp.Tests.csproj">
|
|
||||||
<Project>{de5c0467-ee99-4734-95f2-eff7a0b99924}</Project>
|
|
||||||
<Name>TLSharp.Tests</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="..\TLSharp.Tests\app.config">
|
|
||||||
<Link>app.config</Link>
|
|
||||||
</None>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup />
|
|
||||||
<Choose>
|
|
||||||
<When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
|
|
||||||
<ItemGroup>
|
|
||||||
<Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
||||||
<Private>False</Private>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
||||||
<Private>False</Private>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
||||||
<Private>False</Private>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
||||||
<Private>False</Private>
|
|
||||||
</Reference>
|
|
||||||
</ItemGroup>
|
|
||||||
</When>
|
|
||||||
</Choose>
|
|
||||||
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
|
||||||
<Target Name="BeforeBuild">
|
|
||||||
</Target>
|
|
||||||
<Target Name="AfterBuild">
|
|
||||||
</Target>
|
|
||||||
-->
|
|
||||||
</Project>
|
|
||||||
|
|
|
||||||
67
TLSharp.Tests.old/TLSharp.Tests.csproj
Normal file
67
TLSharp.Tests.old/TLSharp.Tests.csproj
Normal file
|
|
@ -0,0 +1,67 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{DE5C0467-EE99-4734-95F2-EFF7A0B99924}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>TLSharp.Tests</RootNamespace>
|
||||||
|
<AssemblyName>TLSharp.Tests</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Configuration" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="TLSharpTests.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="app.config" />
|
||||||
|
<None Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\TeleSharp.TL\TeleSharp.TL.csproj">
|
||||||
|
<Project>{d6144517-91d2-4880-86df-e9ff5d7f383a}</Project>
|
||||||
|
<Name>TeleSharp.TL</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
<ProjectReference Include="..\TLSharp.Core\TLSharp.Core.csproj">
|
||||||
|
<Project>{400d2544-1cc6-4d8a-a62c-2292d9947a16}</Project>
|
||||||
|
<Name>TLSharp.Core</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include="data\cat.jpg">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
||||||
|
|
@ -1,67 +1,22 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProjectGuid>{DE5C0467-EE99-4734-95F2-EFF7A0B99924}</ProjectGuid>
|
|
||||||
<OutputType>Library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>TLSharp.Tests</RootNamespace>
|
|
||||||
<AssemblyName>TLSharp.Tests</AssemblyName>
|
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
||||||
<FileAlignment>512</FileAlignment>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="System" />
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.4.1" />
|
||||||
<Reference Include="System.Configuration" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="TLSharpTests.cs" />
|
<ProjectReference Include="..\TeleSharp.TL\TeleSharp.TL.csproj" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<ProjectReference Include="..\TLSharp.Core\TLSharp.Core.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="app.config" />
|
<None Update="app.config">
|
||||||
<None Include="packages.config" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\TeleSharp.TL\TeleSharp.TL.csproj">
|
|
||||||
<Project>{d6144517-91d2-4880-86df-e9ff5d7f383a}</Project>
|
|
||||||
<Name>TeleSharp.TL</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="..\TLSharp.Core\TLSharp.Core.csproj">
|
|
||||||
<Project>{400d2544-1cc6-4d8a-a62c-2292d9947a16}</Project>
|
|
||||||
<Name>TLSharp.Core</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Content Include="data\cat.jpg">
|
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</Content>
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
</Project>
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
|
||||||
<Target Name="BeforeBuild">
|
|
||||||
</Target>
|
|
||||||
<Target Name="AfterBuild">
|
|
||||||
</Target>
|
|
||||||
-->
|
|
||||||
</Project>
|
|
||||||
|
|
|
||||||
|
|
@ -79,42 +79,47 @@ namespace TLSharp.Tests
|
||||||
private void GatherTestConfiguration()
|
private void GatherTestConfiguration()
|
||||||
{
|
{
|
||||||
string appConfigMsgWarning = "{0} not configured in app.config! Some tests may fail.";
|
string appConfigMsgWarning = "{0} not configured in app.config! Some tests may fail.";
|
||||||
|
// https://github.com/dotnet/corefx/issues/22101#issuecomment-374415132
|
||||||
|
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(new ExeConfigurationFileMap
|
||||||
|
{
|
||||||
|
ExeConfigFilename = Path.Combine(AppContext.BaseDirectory, "app.config")
|
||||||
|
}, ConfigurationUserLevel.None);
|
||||||
|
|
||||||
ApiHash = ConfigurationManager.AppSettings[nameof(ApiHash)];
|
ApiHash = config.AppSettings.Settings[nameof(ApiHash)].Value;
|
||||||
if (string.IsNullOrEmpty(ApiHash))
|
if (string.IsNullOrEmpty(ApiHash))
|
||||||
Debug.WriteLine(appConfigMsgWarning, nameof(ApiHash));
|
Debug.WriteLine(appConfigMsgWarning, nameof(ApiHash));
|
||||||
|
|
||||||
var apiId = ConfigurationManager.AppSettings[nameof(ApiId)];
|
var apiId = config.AppSettings.Settings[nameof(ApiId)].Value;
|
||||||
if (string.IsNullOrEmpty(apiId))
|
if (string.IsNullOrEmpty(apiId))
|
||||||
Debug.WriteLine(appConfigMsgWarning, nameof(ApiId));
|
Debug.WriteLine(appConfigMsgWarning, nameof(ApiId));
|
||||||
else
|
else
|
||||||
ApiId = int.Parse(apiId);
|
ApiId = int.Parse(apiId);
|
||||||
|
|
||||||
NumberToAuthenticate = ConfigurationManager.AppSettings[nameof(NumberToAuthenticate)];
|
NumberToAuthenticate = config.AppSettings.Settings[nameof(NumberToAuthenticate)].Value;
|
||||||
if (string.IsNullOrEmpty(NumberToAuthenticate))
|
if (string.IsNullOrEmpty(NumberToAuthenticate))
|
||||||
Debug.WriteLine(appConfigMsgWarning, nameof(NumberToAuthenticate));
|
Debug.WriteLine(appConfigMsgWarning, nameof(NumberToAuthenticate));
|
||||||
|
|
||||||
CodeToAuthenticate = ConfigurationManager.AppSettings[nameof(CodeToAuthenticate)];
|
CodeToAuthenticate = config.AppSettings.Settings[nameof(CodeToAuthenticate)].Value;
|
||||||
if (string.IsNullOrEmpty(CodeToAuthenticate))
|
if (string.IsNullOrEmpty(CodeToAuthenticate))
|
||||||
Debug.WriteLine(appConfigMsgWarning, nameof(CodeToAuthenticate));
|
Debug.WriteLine(appConfigMsgWarning, nameof(CodeToAuthenticate));
|
||||||
|
|
||||||
PasswordToAuthenticate = ConfigurationManager.AppSettings[nameof(PasswordToAuthenticate)];
|
PasswordToAuthenticate = config.AppSettings.Settings[nameof(PasswordToAuthenticate)].Value;
|
||||||
if (string.IsNullOrEmpty(PasswordToAuthenticate))
|
if (string.IsNullOrEmpty(PasswordToAuthenticate))
|
||||||
Debug.WriteLine(appConfigMsgWarning, nameof(PasswordToAuthenticate));
|
Debug.WriteLine(appConfigMsgWarning, nameof(PasswordToAuthenticate));
|
||||||
|
|
||||||
NotRegisteredNumberToSignUp = ConfigurationManager.AppSettings[nameof(NotRegisteredNumberToSignUp)];
|
NotRegisteredNumberToSignUp = config.AppSettings.Settings[nameof(NotRegisteredNumberToSignUp)].Value;
|
||||||
if (string.IsNullOrEmpty(NotRegisteredNumberToSignUp))
|
if (string.IsNullOrEmpty(NotRegisteredNumberToSignUp))
|
||||||
Debug.WriteLine(appConfigMsgWarning, nameof(NotRegisteredNumberToSignUp));
|
Debug.WriteLine(appConfigMsgWarning, nameof(NotRegisteredNumberToSignUp));
|
||||||
|
|
||||||
UserNameToSendMessage = ConfigurationManager.AppSettings[nameof(UserNameToSendMessage)];
|
UserNameToSendMessage = config.AppSettings.Settings[nameof(UserNameToSendMessage)].Value;
|
||||||
if (string.IsNullOrEmpty(UserNameToSendMessage))
|
if (string.IsNullOrEmpty(UserNameToSendMessage))
|
||||||
Debug.WriteLine(appConfigMsgWarning, nameof(UserNameToSendMessage));
|
Debug.WriteLine(appConfigMsgWarning, nameof(UserNameToSendMessage));
|
||||||
|
|
||||||
NumberToGetUserFull = ConfigurationManager.AppSettings[nameof(NumberToGetUserFull)];
|
NumberToGetUserFull = config.AppSettings.Settings[nameof(NumberToGetUserFull)].Value;
|
||||||
if (string.IsNullOrEmpty(NumberToGetUserFull))
|
if (string.IsNullOrEmpty(NumberToGetUserFull))
|
||||||
Debug.WriteLine(appConfigMsgWarning, nameof(NumberToGetUserFull));
|
Debug.WriteLine(appConfigMsgWarning, nameof(NumberToGetUserFull));
|
||||||
|
|
||||||
NumberToAddToChat = ConfigurationManager.AppSettings[nameof(NumberToAddToChat)];
|
NumberToAddToChat = config.AppSettings.Settings[nameof(NumberToAddToChat)].Value;
|
||||||
if (string.IsNullOrEmpty(NumberToAddToChat))
|
if (string.IsNullOrEmpty(NumberToAddToChat))
|
||||||
Debug.WriteLine(appConfigMsgWarning, nameof(NumberToAddToChat));
|
Debug.WriteLine(appConfigMsgWarning, nameof(NumberToAddToChat));
|
||||||
}
|
}
|
||||||
|
|
@ -268,7 +273,7 @@ namespace TLSharp.Tests
|
||||||
Version = document.Version
|
Version = document.Version
|
||||||
},
|
},
|
||||||
document.Size);
|
document.Size);
|
||||||
|
|
||||||
Assert.IsTrue(resFile.Bytes.Length > 0);
|
Assert.IsTrue(resFile.Bytes.Length > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -283,7 +288,7 @@ namespace TLSharp.Tests
|
||||||
var user = result.Users
|
var user = result.Users
|
||||||
.OfType<TLUser>()
|
.OfType<TLUser>()
|
||||||
.FirstOrDefault(x => x.Id == 5880094);
|
.FirstOrDefault(x => x.Id == 5880094);
|
||||||
|
|
||||||
var photo = ((TLUserProfilePhoto)user.Photo);
|
var photo = ((TLUserProfilePhoto)user.Photo);
|
||||||
var photoLocation = (TLFileLocation) photo.PhotoBig;
|
var photoLocation = (TLFileLocation) photo.PhotoBig;
|
||||||
|
|
||||||
|
|
@ -294,7 +299,7 @@ namespace TLSharp.Tests
|
||||||
VolumeId = photoLocation.VolumeId
|
VolumeId = photoLocation.VolumeId
|
||||||
}, 1024);
|
}, 1024);
|
||||||
|
|
||||||
var res = await client.GetUserDialogsAsync();
|
var res = await client.GetUserDialogsAsync();
|
||||||
|
|
||||||
Assert.IsTrue(resFile.Bytes.Length > 0);
|
Assert.IsTrue(resFile.Bytes.Length > 0);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<packages>
|
|
||||||
</packages>
|
|
||||||
73
TLSharp.sln
73
TLSharp.sln
|
|
@ -1,19 +1,19 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio 14
|
# Visual Studio 15
|
||||||
VisualStudioVersion = 14.0.24720.0
|
VisualStudioVersion = 15.0.27130.2027
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSharp.Core", "TLSharp.Core\TLSharp.Core.csproj", "{400D2544-1CC6-4D8A-A62C-2292D9947A16}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TeleSharp.Generator", "TeleSharp.Generator\TeleSharp.Generator.csproj", "{E447A49F-8C71-4024-A191-864533EF91EF}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TeleSharp.TL", "TeleSharp.TL\TeleSharp.TL.csproj", "{D6144517-91D2-4880-86DF-E9FF5D7F383A}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TeleSharp.TL", "TeleSharp.TL\TeleSharp.TL.csproj", "{68AFF5CD-8D91-48B0-9841-2EB95C66B940}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TeleSharp.Generator", "TeleSharp.Generator\TeleSharp.Generator.csproj", "{9BE3B9D4-9FF6-4DC8-B9CC-EB2E3F390129}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSharp.Core", "TLSharp.Core\TLSharp.Core.csproj", "{2B5062F5-81D9-4559-8B47-FA6FAFB5D617}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSharp.Tests", "TLSharp.Tests\TLSharp.Tests.csproj", "{DE5C0467-EE99-4734-95F2-EFF7A0B99924}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSharp.Tests.NUnit", "TLSharp.Tests.NUnit\TLSharp.Tests.NUnit.csproj", "{CDF11B31-A455-4496-B771-CBEF4E1F4A25}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSharp.Tests.VS", "TLSharp.Tests.VS\TLSharp.Tests.VS.csproj", "{AFFC3B00-3E4D-4327-8F7A-08EE41E0C8B7}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSharp.Tests", "TLSharp.Tests\TLSharp.Tests.csproj", "{E91B06D3-9C9C-41DF-B7A9-51394735FCC3}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSharp.Tests.NUnit", "TLSharp.Tests.NUnit\TLSharp.Tests.NUnit.csproj", "{E90B705B-19FA-43BA-B952-69957976D12C}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TLSharp.Tests.VS", "TLSharp.Tests.VS\TLSharp.Tests.VS.csproj", "{A8AB6168-CE14-45AE-8213-656D3983DCCD}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
|
@ -21,30 +21,36 @@ Global
|
||||||
Release|Any CPU = Release|Any CPU
|
Release|Any CPU = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{400D2544-1CC6-4D8A-A62C-2292D9947A16}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{E447A49F-8C71-4024-A191-864533EF91EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{400D2544-1CC6-4D8A-A62C-2292D9947A16}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{E447A49F-8C71-4024-A191-864533EF91EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{400D2544-1CC6-4D8A-A62C-2292D9947A16}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{E447A49F-8C71-4024-A191-864533EF91EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{400D2544-1CC6-4D8A-A62C-2292D9947A16}.Release|Any CPU.Build.0 = Release|Any CPU
|
{E447A49F-8C71-4024-A191-864533EF91EF}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{D6144517-91D2-4880-86DF-E9FF5D7F383A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{68AFF5CD-8D91-48B0-9841-2EB95C66B940}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{D6144517-91D2-4880-86DF-E9FF5D7F383A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{68AFF5CD-8D91-48B0-9841-2EB95C66B940}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{D6144517-91D2-4880-86DF-E9FF5D7F383A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{68AFF5CD-8D91-48B0-9841-2EB95C66B940}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{D6144517-91D2-4880-86DF-E9FF5D7F383A}.Release|Any CPU.Build.0 = Release|Any CPU
|
{68AFF5CD-8D91-48B0-9841-2EB95C66B940}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{9BE3B9D4-9FF6-4DC8-B9CC-EB2E3F390129}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{2B5062F5-81D9-4559-8B47-FA6FAFB5D617}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{9BE3B9D4-9FF6-4DC8-B9CC-EB2E3F390129}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{2B5062F5-81D9-4559-8B47-FA6FAFB5D617}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{9BE3B9D4-9FF6-4DC8-B9CC-EB2E3F390129}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{2B5062F5-81D9-4559-8B47-FA6FAFB5D617}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{9BE3B9D4-9FF6-4DC8-B9CC-EB2E3F390129}.Release|Any CPU.Build.0 = Release|Any CPU
|
{2B5062F5-81D9-4559-8B47-FA6FAFB5D617}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{DE5C0467-EE99-4734-95F2-EFF7A0B99924}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{CDF11B31-A455-4496-B771-CBEF4E1F4A25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{DE5C0467-EE99-4734-95F2-EFF7A0B99924}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{CDF11B31-A455-4496-B771-CBEF4E1F4A25}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{DE5C0467-EE99-4734-95F2-EFF7A0B99924}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{CDF11B31-A455-4496-B771-CBEF4E1F4A25}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{DE5C0467-EE99-4734-95F2-EFF7A0B99924}.Release|Any CPU.Build.0 = Release|Any CPU
|
{CDF11B31-A455-4496-B771-CBEF4E1F4A25}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{AFFC3B00-3E4D-4327-8F7A-08EE41E0C8B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{E91B06D3-9C9C-41DF-B7A9-51394735FCC3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{AFFC3B00-3E4D-4327-8F7A-08EE41E0C8B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{E91B06D3-9C9C-41DF-B7A9-51394735FCC3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{AFFC3B00-3E4D-4327-8F7A-08EE41E0C8B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{E91B06D3-9C9C-41DF-B7A9-51394735FCC3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{AFFC3B00-3E4D-4327-8F7A-08EE41E0C8B7}.Release|Any CPU.Build.0 = Release|Any CPU
|
{E91B06D3-9C9C-41DF-B7A9-51394735FCC3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{E90B705B-19FA-43BA-B952-69957976D12C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{A8AB6168-CE14-45AE-8213-656D3983DCCD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{E90B705B-19FA-43BA-B952-69957976D12C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{A8AB6168-CE14-45AE-8213-656D3983DCCD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{E90B705B-19FA-43BA-B952-69957976D12C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{A8AB6168-CE14-45AE-8213-656D3983DCCD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{E90B705B-19FA-43BA-B952-69957976D12C}.Release|Any CPU.Build.0 = Release|Any CPU
|
{A8AB6168-CE14-45AE-8213-656D3983DCCD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {B516F53E-BB4D-42E3-9F03-A2F6BE909AD8}
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(MonoDevelopProperties) = preSolution
|
GlobalSection(MonoDevelopProperties) = preSolution
|
||||||
Policies = $0
|
Policies = $0
|
||||||
|
|
@ -81,7 +87,4 @@ Global
|
||||||
$2.inheritsScope = text/x-csharp
|
$2.inheritsScope = text/x-csharp
|
||||||
$2.scope = text/x-csharp
|
$2.scope = text/x-csharp
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
|
||||||
80
TeleSharp.Generator.old/TeleSharp.Generator.csproj
Normal file
80
TeleSharp.Generator.old/TeleSharp.Generator.csproj
Normal file
|
|
@ -0,0 +1,80 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{9BE3B9D4-9FF6-4DC8-B9CC-EB2E3F390129}</ProjectGuid>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>TeleSharp.Generator</RootNamespace>
|
||||||
|
<AssemblyName>TeleSharp.Generator</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Models.cs" />
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
<Content Include="Method.tmp">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
<None Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include="Constructor.tmp">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
<Content Include="ConstructorAbs.tmp">
|
||||||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
||||||
|
|
@ -1,80 +1,11 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProjectGuid>{9BE3B9D4-9FF6-4DC8-B9CC-EB2E3F390129}</ProjectGuid>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>TeleSharp.Generator</RootNamespace>
|
|
||||||
<AssemblyName>TeleSharp.Generator</AssemblyName>
|
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
||||||
<FileAlignment>512</FileAlignment>
|
|
||||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
||||||
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
|
||||||
<Private>True</Private>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System" />
|
|
||||||
<Reference Include="System.Core" />
|
|
||||||
<Reference Include="System.Xml.Linq" />
|
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
|
||||||
<Reference Include="Microsoft.CSharp" />
|
|
||||||
<Reference Include="System.Data" />
|
|
||||||
<Reference Include="System.Net.Http" />
|
|
||||||
<Reference Include="System.Xml" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<Compile Include="Models.cs" />
|
</Project>
|
||||||
<Compile Include="Program.cs" />
|
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="App.config" />
|
|
||||||
<Content Include="Method.tmp">
|
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
||||||
</Content>
|
|
||||||
<None Include="packages.config" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Content Include="Constructor.tmp">
|
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
||||||
</Content>
|
|
||||||
<Content Include="ConstructorAbs.tmp">
|
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
||||||
</Content>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
|
||||||
<Target Name="BeforeBuild">
|
|
||||||
</Target>
|
|
||||||
<Target Name="AfterBuild">
|
|
||||||
</Target>
|
|
||||||
-->
|
|
||||||
</Project>
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<packages>
|
|
||||||
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net452" />
|
|
||||||
</packages>
|
|
||||||
938
TeleSharp.TL.old/TeleSharp.TL.csproj
Normal file
938
TeleSharp.TL.old/TeleSharp.TL.csproj
Normal file
|
|
@ -0,0 +1,938 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{D6144517-91D2-4880-86DF-E9FF5D7F383A}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>TeleSharp.TL</RootNamespace>
|
||||||
|
<AssemblyName>TeleSharp.TL</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="BigMath, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\BigMath.0.5.0\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1\BigMath.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="ObjectDeserializer.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<Compile Include="TLContext.cs" />
|
||||||
|
<Compile Include="TLMethod.cs" />
|
||||||
|
<Compile Include="TLObject.cs" />
|
||||||
|
<Compile Include="TLUtils.cs" />
|
||||||
|
<Compile Include="TLVector.cs" />
|
||||||
|
<Compile Include="TL\Account\TLAbsPassword.cs" />
|
||||||
|
<Compile Include="TL\Account\TLAuthorizations.cs" />
|
||||||
|
<Compile Include="TL\Account\TLNoPassword.cs" />
|
||||||
|
<Compile Include="TL\Account\TLPassword.cs" />
|
||||||
|
<Compile Include="TL\Account\TLPasswordInputSettings.cs" />
|
||||||
|
<Compile Include="TL\Account\TLPasswordSettings.cs" />
|
||||||
|
<Compile Include="TL\Account\TLPrivacyRules.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestChangePhone.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestCheckUsername.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestConfirmPhone.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestDeleteAccount.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestGetAccountTTL.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestGetAuthorizations.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestGetNotifySettings.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestGetPassword.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestGetPasswordSettings.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestGetPrivacy.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestGetTmpPassword.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestGetWallPapers.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestRegisterDevice.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestReportPeer.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestResetAuthorization.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestResetNotifySettings.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestSendChangePhoneCode.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestSendConfirmPhoneCode.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestSetAccountTTL.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestSetPrivacy.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestUnregisterDevice.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestUpdateDeviceLocked.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestUpdateNotifySettings.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestUpdatePasswordSettings.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestUpdateProfile.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestUpdateStatus.cs" />
|
||||||
|
<Compile Include="TL\Account\TLRequestUpdateUsername.cs" />
|
||||||
|
<Compile Include="TL\Account\TLTmpPassword.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLAbsCodeType.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLAbsSentCodeType.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLAuthorization.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLCheckedPhone.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLCodeTypeCall.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLCodeTypeFlashCall.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLCodeTypeSms.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLExportedAuthorization.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLPasswordRecovery.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestBindTempAuthKey.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestCancelCode.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestCheckPassword.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestCheckPhone.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestDropTempAuthKeys.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestExportAuthorization.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestImportAuthorization.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestImportBotAuthorization.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestLogOut.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestRecoverPassword.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestRequestPasswordRecovery.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestResendCode.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestResetAuthorizations.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestSendCode.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestSendInvites.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestSignIn.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLRequestSignUp.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLSentCode.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLSentCodeTypeApp.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLSentCodeTypeCall.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLSentCodeTypeFlashCall.cs" />
|
||||||
|
<Compile Include="TL\Auth\TLSentCodeTypeSms.cs" />
|
||||||
|
<Compile Include="TL\Bots\TLRequestAnswerWebhookJSONQuery.cs" />
|
||||||
|
<Compile Include="TL\Bots\TLRequestSendCustomRequest.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLChannelParticipant.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLChannelParticipants.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestCheckUsername.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestCreateChannel.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestDeleteChannel.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestDeleteMessages.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestDeleteUserHistory.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestEditAbout.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestEditAdmin.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestEditPhoto.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestEditTitle.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestExportInvite.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestExportMessageLink.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestGetAdminedPublicChannels.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestGetChannels.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestGetFullChannel.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestGetMessages.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestGetParticipant.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestGetParticipants.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestInviteToChannel.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestJoinChannel.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestKickFromChannel.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestLeaveChannel.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestReadHistory.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestReportSpam.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestToggleInvites.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestToggleSignatures.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestUpdatePinnedMessage.cs" />
|
||||||
|
<Compile Include="TL\Channels\TLRequestUpdateUsername.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLAbsBlocked.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLAbsContacts.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLAbsTopPeers.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLBlocked.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLBlockedSlice.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLContacts.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLContactsNotModified.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLFound.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLImportedContacts.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLLink.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestBlock.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestDeleteContact.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestDeleteContacts.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestExportCard.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestGetBlocked.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestGetContacts.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestGetStatuses.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestGetTopPeers.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestImportCard.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestImportContacts.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestResetTopPeerRating.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestResolveUsername.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestSearch.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLRequestUnblock.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLResolvedPeer.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLTopPeers.cs" />
|
||||||
|
<Compile Include="TL\Contacts\TLTopPeersNotModified.cs" />
|
||||||
|
<Compile Include="TL\Help\TLAbsAppUpdate.cs" />
|
||||||
|
<Compile Include="TL\Help\TLAppUpdate.cs" />
|
||||||
|
<Compile Include="TL\Help\TLInviteText.cs" />
|
||||||
|
<Compile Include="TL\Help\TLNoAppUpdate.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestGetAppChangelog.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestGetAppUpdate.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestGetCdnConfig.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestGetConfig.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestGetInviteText.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestGetNearestDc.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestGetSupport.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestGetTermsOfService.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestSaveAppLog.cs" />
|
||||||
|
<Compile Include="TL\Help\TLRequestSetBotUpdatesStatus.cs" />
|
||||||
|
<Compile Include="TL\Help\TLSupport.cs" />
|
||||||
|
<Compile Include="TL\Help\TLTermsOfService.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsAllStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsChats.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsDhConfig.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsDialogs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsFeaturedStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsMessages.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsRecentStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsSavedGifs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsSentEncryptedMessage.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAbsStickerSetInstallResult.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAffectedHistory.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAffectedMessages.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAllStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLAllStickersNotModified.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLArchivedStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLBotCallbackAnswer.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLBotResults.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLChannelMessages.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLChatFull.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLChats.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLChatsSlice.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLDhConfig.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLDhConfigNotModified.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLDialogs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLDialogsSlice.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLFeaturedStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLFeaturedStickersNotModified.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLFoundGifs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLHighScores.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLMessageEditData.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLMessages.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLMessagesSlice.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLPeerDialogs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRecentStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRecentStickersNotModified.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestAcceptEncryption.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestAddChatUser.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestCheckChatInvite.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestClearRecentStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestCreateChat.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestDeleteChatUser.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestDeleteHistory.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestDeleteMessages.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestDiscardEncryption.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestEditChatAdmin.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestEditChatPhoto.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestEditChatTitle.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestEditInlineBotMessage.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestEditMessage.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestExportChatInvite.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestForwardMessage.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestForwardMessages.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetAllChats.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetAllDrafts.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetAllStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetArchivedStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetAttachedStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetBotCallbackAnswer.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetChats.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetCommonChats.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetDhConfig.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetDialogs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetDocumentByHash.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetFeaturedStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetFullChat.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetGameHighScores.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetHistory.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetInlineBotResults.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetInlineGameHighScores.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetMaskStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetMessageEditData.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetMessages.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetMessagesViews.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetPeerDialogs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetPeerSettings.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetPinnedDialogs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetRecentStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetSavedGifs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetStickerSet.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetWebPage.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestGetWebPagePreview.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestHideReportSpam.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestImportChatInvite.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestInstallStickerSet.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestMigrateChat.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReadEncryptedHistory.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReadFeaturedStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReadHistory.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReadMessageContents.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReceivedMessages.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReceivedQueue.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReorderPinnedDialogs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReorderStickerSets.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReportEncryptedSpam.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestReportSpam.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestRequestEncryption.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSaveDraft.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSaveGif.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSaveRecentSticker.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSearch.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSearchGifs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSearchGlobal.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSendEncrypted.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSendEncryptedFile.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSendEncryptedService.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSendInlineBotResult.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSendMedia.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSendMessage.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSetBotCallbackAnswer.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSetBotPrecheckoutResults.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSetBotShippingResults.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSetEncryptedTyping.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSetGameScore.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSetInlineBotResults.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSetInlineGameScore.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestSetTyping.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestStartBot.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestToggleChatAdmins.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestToggleDialogPin.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestUninstallStickerSet.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLRequestUploadMedia.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLSavedGifs.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLSavedGifsNotModified.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLSentEncryptedFile.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLSentEncryptedMessage.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLStickers.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLStickerSet.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLStickerSetInstallResultArchive.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLStickerSetInstallResultSuccess.cs" />
|
||||||
|
<Compile Include="TL\Messages\TLStickersNotModified.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLAbsPaymentResult.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLPaymentForm.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLPaymentReceipt.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLPaymentResult.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLPaymentVerficationNeeded.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLRequestClearSavedInfo.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLRequestGetPaymentForm.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLRequestGetPaymentReceipt.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLRequestGetSavedInfo.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLRequestSendPaymentForm.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLRequestValidateRequestedInfo.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLSavedInfo.cs" />
|
||||||
|
<Compile Include="TL\Payments\TLValidatedRequestedInfo.cs" />
|
||||||
|
<Compile Include="TL\Phone\TLPhoneCall.cs" />
|
||||||
|
<Compile Include="TL\Phone\TLRequestAcceptCall.cs" />
|
||||||
|
<Compile Include="TL\Phone\TLRequestConfirmCall.cs" />
|
||||||
|
<Compile Include="TL\Phone\TLRequestDiscardCall.cs" />
|
||||||
|
<Compile Include="TL\Phone\TLRequestGetCallConfig.cs" />
|
||||||
|
<Compile Include="TL\Phone\TLRequestReceivedCall.cs" />
|
||||||
|
<Compile Include="TL\Phone\TLRequestRequestCall.cs" />
|
||||||
|
<Compile Include="TL\Phone\TLRequestSaveCallDebug.cs" />
|
||||||
|
<Compile Include="TL\Phone\TLRequestSetCallRating.cs" />
|
||||||
|
<Compile Include="TL\Photos\TLAbsPhotos.cs" />
|
||||||
|
<Compile Include="TL\Photos\TLPhoto.cs" />
|
||||||
|
<Compile Include="TL\Photos\TLPhotos.cs" />
|
||||||
|
<Compile Include="TL\Photos\TLPhotosSlice.cs" />
|
||||||
|
<Compile Include="TL\Photos\TLRequestDeletePhotos.cs" />
|
||||||
|
<Compile Include="TL\Photos\TLRequestGetUserPhotos.cs" />
|
||||||
|
<Compile Include="TL\Photos\TLRequestUpdateProfilePhoto.cs" />
|
||||||
|
<Compile Include="TL\Photos\TLRequestUploadProfilePhoto.cs" />
|
||||||
|
<Compile Include="TL\Stickers\TLRequestAddStickerToSet.cs" />
|
||||||
|
<Compile Include="TL\Stickers\TLRequestChangeStickerPosition.cs" />
|
||||||
|
<Compile Include="TL\Stickers\TLRequestCreateStickerSet.cs" />
|
||||||
|
<Compile Include="TL\Stickers\TLRequestRemoveStickerFromSet.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLAbsFileType.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFileGif.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFileJpeg.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFileMov.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFileMp3.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFileMp4.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFilePartial.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFilePdf.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFilePng.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFileUnknown.cs" />
|
||||||
|
<Compile Include="TL\Storage\TLFileWebp.cs" />
|
||||||
|
<Compile Include="TL\TLAbsBool.cs" />
|
||||||
|
<Compile Include="TL\TLAbsBotInlineMessage.cs" />
|
||||||
|
<Compile Include="TL\TLAbsBotInlineResult.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChannelMessagesFilter.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChannelParticipant.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChannelParticipantRole.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChannelParticipantsFilter.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChat.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChatFull.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChatInvite.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChatParticipant.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChatParticipants.cs" />
|
||||||
|
<Compile Include="TL\TLAbsChatPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLAbsContactLink.cs" />
|
||||||
|
<Compile Include="TL\TLAbsDocument.cs" />
|
||||||
|
<Compile Include="TL\TLAbsDocumentAttribute.cs" />
|
||||||
|
<Compile Include="TL\TLAbsDraftMessage.cs" />
|
||||||
|
<Compile Include="TL\TLAbsEncryptedChat.cs" />
|
||||||
|
<Compile Include="TL\TLAbsEncryptedFile.cs" />
|
||||||
|
<Compile Include="TL\TLAbsEncryptedMessage.cs" />
|
||||||
|
<Compile Include="TL\TLAbsExportedChatInvite.cs" />
|
||||||
|
<Compile Include="TL\TLAbsFileLocation.cs" />
|
||||||
|
<Compile Include="TL\TLAbsFoundGif.cs" />
|
||||||
|
<Compile Include="TL\TLAbsGeoPoint.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputBotInlineMessage.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputBotInlineResult.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputChannel.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputChatPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputDocument.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputEncryptedFile.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputFile.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputFileLocation.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputGame.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputGeoPoint.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputMedia.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputNotifyPeer.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputPaymentCredentials.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputPeer.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputPeerNotifyEvents.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputPrivacyKey.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputPrivacyRule.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputStickeredMedia.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputStickerSet.cs" />
|
||||||
|
<Compile Include="TL\TLAbsInputUser.cs" />
|
||||||
|
<Compile Include="TL\TLAbsKeyboardButton.cs" />
|
||||||
|
<Compile Include="TL\TLAbsMessage.cs" />
|
||||||
|
<Compile Include="TL\TLAbsMessageAction.cs" />
|
||||||
|
<Compile Include="TL\TLAbsMessageEntity.cs" />
|
||||||
|
<Compile Include="TL\TLAbsMessageMedia.cs" />
|
||||||
|
<Compile Include="TL\TLAbsMessagesFilter.cs" />
|
||||||
|
<Compile Include="TL\TLAbsNotifyPeer.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPage.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPageBlock.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPeer.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPeerNotifyEvents.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPeerNotifySettings.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPhoneCall.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPhoneCallDiscardReason.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPhotoSize.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPrivacyKey.cs" />
|
||||||
|
<Compile Include="TL\TLAbsPrivacyRule.cs" />
|
||||||
|
<Compile Include="TL\TLAbsReplyMarkup.cs" />
|
||||||
|
<Compile Include="TL\TLAbsReportReason.cs" />
|
||||||
|
<Compile Include="TL\TLAbsRichText.cs" />
|
||||||
|
<Compile Include="TL\TLAbsSendMessageAction.cs" />
|
||||||
|
<Compile Include="TL\TLAbsStickerSetCovered.cs" />
|
||||||
|
<Compile Include="TL\TLAbsTopPeerCategory.cs" />
|
||||||
|
<Compile Include="TL\TLAbsUpdate.cs" />
|
||||||
|
<Compile Include="TL\TLAbsUpdates.cs" />
|
||||||
|
<Compile Include="TL\TLAbsUser.cs" />
|
||||||
|
<Compile Include="TL\TLAbsUserProfilePhoto.cs" />
|
||||||
|
<Compile Include="TL\TLAbsUserStatus.cs" />
|
||||||
|
<Compile Include="TL\TLAbsWallPaper.cs" />
|
||||||
|
<Compile Include="TL\TLAbsWebPage.cs" />
|
||||||
|
<Compile Include="TL\TLAccountDaysTTL.cs" />
|
||||||
|
<Compile Include="TL\TLAuthorization.cs" />
|
||||||
|
<Compile Include="TL\TLBoolFalse.cs" />
|
||||||
|
<Compile Include="TL\TLBoolTrue.cs" />
|
||||||
|
<Compile Include="TL\TLBotCommand.cs" />
|
||||||
|
<Compile Include="TL\TLBotInfo.cs" />
|
||||||
|
<Compile Include="TL\TLBotInlineMediaResult.cs" />
|
||||||
|
<Compile Include="TL\TLBotInlineMessageMediaAuto.cs" />
|
||||||
|
<Compile Include="TL\TLBotInlineMessageMediaContact.cs" />
|
||||||
|
<Compile Include="TL\TLBotInlineMessageMediaGeo.cs" />
|
||||||
|
<Compile Include="TL\TLBotInlineMessageMediaVenue.cs" />
|
||||||
|
<Compile Include="TL\TLBotInlineMessageText.cs" />
|
||||||
|
<Compile Include="TL\TLBotInlineResult.cs" />
|
||||||
|
<Compile Include="TL\TLCdnConfig.cs" />
|
||||||
|
<Compile Include="TL\TLCdnPublicKey.cs" />
|
||||||
|
<Compile Include="TL\TLChannel.cs" />
|
||||||
|
<Compile Include="TL\TLChannelForbidden.cs" />
|
||||||
|
<Compile Include="TL\TLChannelFull.cs" />
|
||||||
|
<Compile Include="TL\TLChannelMessagesFilter.cs" />
|
||||||
|
<Compile Include="TL\TLChannelMessagesFilterEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipant.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipantCreator.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipantEditor.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipantKicked.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipantModerator.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipantsAdmins.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipantsBots.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipantSelf.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipantsKicked.cs" />
|
||||||
|
<Compile Include="TL\TLChannelParticipantsRecent.cs" />
|
||||||
|
<Compile Include="TL\TLChannelRoleEditor.cs" />
|
||||||
|
<Compile Include="TL\TLChannelRoleEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLChannelRoleModerator.cs" />
|
||||||
|
<Compile Include="TL\TLChat.cs" />
|
||||||
|
<Compile Include="TL\TLChatEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLChatForbidden.cs" />
|
||||||
|
<Compile Include="TL\TLChatFull.cs" />
|
||||||
|
<Compile Include="TL\TLChatInvite.cs" />
|
||||||
|
<Compile Include="TL\TLChatInviteAlready.cs" />
|
||||||
|
<Compile Include="TL\TLChatInviteEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLChatInviteExported.cs" />
|
||||||
|
<Compile Include="TL\TLChatParticipant.cs" />
|
||||||
|
<Compile Include="TL\TLChatParticipantAdmin.cs" />
|
||||||
|
<Compile Include="TL\TLChatParticipantCreator.cs" />
|
||||||
|
<Compile Include="TL\TLChatParticipants.cs" />
|
||||||
|
<Compile Include="TL\TLChatParticipantsForbidden.cs" />
|
||||||
|
<Compile Include="TL\TLChatPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLChatPhotoEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLConfig.cs" />
|
||||||
|
<Compile Include="TL\TLContact.cs" />
|
||||||
|
<Compile Include="TL\TLContactBlocked.cs" />
|
||||||
|
<Compile Include="TL\TLContactLinkContact.cs" />
|
||||||
|
<Compile Include="TL\TLContactLinkHasPhone.cs" />
|
||||||
|
<Compile Include="TL\TLContactLinkNone.cs" />
|
||||||
|
<Compile Include="TL\TLContactLinkUnknown.cs" />
|
||||||
|
<Compile Include="TL\TLContactStatus.cs" />
|
||||||
|
<Compile Include="TL\TLDataJSON.cs" />
|
||||||
|
<Compile Include="TL\TLDcOption.cs" />
|
||||||
|
<Compile Include="TL\TLDialog.cs" />
|
||||||
|
<Compile Include="TL\TLDisabledFeature.cs" />
|
||||||
|
<Compile Include="TL\TLDocument.cs" />
|
||||||
|
<Compile Include="TL\TLDocumentAttributeAnimated.cs" />
|
||||||
|
<Compile Include="TL\TLDocumentAttributeAudio.cs" />
|
||||||
|
<Compile Include="TL\TLDocumentAttributeFilename.cs" />
|
||||||
|
<Compile Include="TL\TLDocumentAttributeHasStickers.cs" />
|
||||||
|
<Compile Include="TL\TLDocumentAttributeImageSize.cs" />
|
||||||
|
<Compile Include="TL\TLDocumentAttributeSticker.cs" />
|
||||||
|
<Compile Include="TL\TLDocumentAttributeVideo.cs" />
|
||||||
|
<Compile Include="TL\TLDocumentEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLDraftMessage.cs" />
|
||||||
|
<Compile Include="TL\TLDraftMessageEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLEncryptedChat.cs" />
|
||||||
|
<Compile Include="TL\TLEncryptedChatDiscarded.cs" />
|
||||||
|
<Compile Include="TL\TLEncryptedChatEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLEncryptedChatRequested.cs" />
|
||||||
|
<Compile Include="TL\TLEncryptedChatWaiting.cs" />
|
||||||
|
<Compile Include="TL\TLEncryptedFile.cs" />
|
||||||
|
<Compile Include="TL\TLEncryptedFileEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLEncryptedMessage.cs" />
|
||||||
|
<Compile Include="TL\TLEncryptedMessageService.cs" />
|
||||||
|
<Compile Include="TL\TLError.cs" />
|
||||||
|
<Compile Include="TL\TLExportedMessageLink.cs" />
|
||||||
|
<Compile Include="TL\TLFileLocation.cs" />
|
||||||
|
<Compile Include="TL\TLFileLocationUnavailable.cs" />
|
||||||
|
<Compile Include="TL\TLFoundGif.cs" />
|
||||||
|
<Compile Include="TL\TLFoundGifCached.cs" />
|
||||||
|
<Compile Include="TL\TLGame.cs" />
|
||||||
|
<Compile Include="TL\TLGeoPoint.cs" />
|
||||||
|
<Compile Include="TL\TLGeoPointEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLHighScore.cs" />
|
||||||
|
<Compile Include="TL\TLImportedContact.cs" />
|
||||||
|
<Compile Include="TL\TLInlineBotSwitchPM.cs" />
|
||||||
|
<Compile Include="TL\TLInputAppEvent.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineMessageGame.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineMessageID.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineMessageMediaAuto.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineMessageMediaContact.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineMessageMediaGeo.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineMessageMediaVenue.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineMessageText.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineResult.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineResultDocument.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineResultGame.cs" />
|
||||||
|
<Compile Include="TL\TLInputBotInlineResultPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLInputChannel.cs" />
|
||||||
|
<Compile Include="TL\TLInputChannelEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputChatPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLInputChatPhotoEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputChatUploadedPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLInputDocument.cs" />
|
||||||
|
<Compile Include="TL\TLInputDocumentEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputDocumentFileLocation.cs" />
|
||||||
|
<Compile Include="TL\TLInputEncryptedChat.cs" />
|
||||||
|
<Compile Include="TL\TLInputEncryptedFile.cs" />
|
||||||
|
<Compile Include="TL\TLInputEncryptedFileBigUploaded.cs" />
|
||||||
|
<Compile Include="TL\TLInputEncryptedFileEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputEncryptedFileLocation.cs" />
|
||||||
|
<Compile Include="TL\TLInputEncryptedFileUploaded.cs" />
|
||||||
|
<Compile Include="TL\TLInputFile.cs" />
|
||||||
|
<Compile Include="TL\TLInputFileBig.cs" />
|
||||||
|
<Compile Include="TL\TLInputFileLocation.cs" />
|
||||||
|
<Compile Include="TL\TLInputGameID.cs" />
|
||||||
|
<Compile Include="TL\TLInputGameShortName.cs" />
|
||||||
|
<Compile Include="TL\TLInputGeoPoint.cs" />
|
||||||
|
<Compile Include="TL\TLInputGeoPointEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaContact.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaDocument.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaDocumentExternal.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaGame.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaGeoPoint.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaGifExternal.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaInvoice.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaPhotoExternal.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaUploadedDocument.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaUploadedPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaUploadedThumbDocument.cs" />
|
||||||
|
<Compile Include="TL\TLInputMediaVenue.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessageEntityMentionName.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterChatPhotos.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterDocument.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterGif.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterMusic.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterPhoneCalls.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterPhotos.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterPhotoVideo.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterPhotoVideoDocuments.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterRoundVideo.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterRoundVoice.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterUrl.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterVideo.cs" />
|
||||||
|
<Compile Include="TL\TLInputMessagesFilterVoice.cs" />
|
||||||
|
<Compile Include="TL\TLInputNotifyAll.cs" />
|
||||||
|
<Compile Include="TL\TLInputNotifyChats.cs" />
|
||||||
|
<Compile Include="TL\TLInputNotifyPeer.cs" />
|
||||||
|
<Compile Include="TL\TLInputNotifyUsers.cs" />
|
||||||
|
<Compile Include="TL\TLInputPaymentCredentials.cs" />
|
||||||
|
<Compile Include="TL\TLInputPaymentCredentialsSaved.cs" />
|
||||||
|
<Compile Include="TL\TLInputPeerChannel.cs" />
|
||||||
|
<Compile Include="TL\TLInputPeerChat.cs" />
|
||||||
|
<Compile Include="TL\TLInputPeerEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputPeerNotifyEventsAll.cs" />
|
||||||
|
<Compile Include="TL\TLInputPeerNotifyEventsEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputPeerNotifySettings.cs" />
|
||||||
|
<Compile Include="TL\TLInputPeerSelf.cs" />
|
||||||
|
<Compile Include="TL\TLInputPeerUser.cs" />
|
||||||
|
<Compile Include="TL\TLInputPhoneCall.cs" />
|
||||||
|
<Compile Include="TL\TLInputPhoneContact.cs" />
|
||||||
|
<Compile Include="TL\TLInputPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLInputPhotoEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputPrivacyKeyChatInvite.cs" />
|
||||||
|
<Compile Include="TL\TLInputPrivacyKeyPhoneCall.cs" />
|
||||||
|
<Compile Include="TL\TLInputPrivacyKeyStatusTimestamp.cs" />
|
||||||
|
<Compile Include="TL\TLInputPrivacyValueAllowAll.cs" />
|
||||||
|
<Compile Include="TL\TLInputPrivacyValueAllowContacts.cs" />
|
||||||
|
<Compile Include="TL\TLInputPrivacyValueAllowUsers.cs" />
|
||||||
|
<Compile Include="TL\TLInputPrivacyValueDisallowAll.cs" />
|
||||||
|
<Compile Include="TL\TLInputPrivacyValueDisallowContacts.cs" />
|
||||||
|
<Compile Include="TL\TLInputPrivacyValueDisallowUsers.cs" />
|
||||||
|
<Compile Include="TL\TLInputReportReasonOther.cs" />
|
||||||
|
<Compile Include="TL\TLInputReportReasonPornography.cs" />
|
||||||
|
<Compile Include="TL\TLInputReportReasonSpam.cs" />
|
||||||
|
<Compile Include="TL\TLInputReportReasonViolence.cs" />
|
||||||
|
<Compile Include="TL\TLInputStickeredMediaDocument.cs" />
|
||||||
|
<Compile Include="TL\TLInputStickeredMediaPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLInputStickerSetEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputStickerSetID.cs" />
|
||||||
|
<Compile Include="TL\TLInputStickerSetItem.cs" />
|
||||||
|
<Compile Include="TL\TLInputStickerSetShortName.cs" />
|
||||||
|
<Compile Include="TL\TLInputUser.cs" />
|
||||||
|
<Compile Include="TL\TLInputUserEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLInputUserSelf.cs" />
|
||||||
|
<Compile Include="TL\TLInputWebDocument.cs" />
|
||||||
|
<Compile Include="TL\TLInputWebFileLocation.cs" />
|
||||||
|
<Compile Include="TL\TLInvoice.cs" />
|
||||||
|
<Compile Include="TL\TLKeyboardButton.cs" />
|
||||||
|
<Compile Include="TL\TLKeyboardButtonBuy.cs" />
|
||||||
|
<Compile Include="TL\TLKeyboardButtonCallback.cs" />
|
||||||
|
<Compile Include="TL\TLKeyboardButtonGame.cs" />
|
||||||
|
<Compile Include="TL\TLKeyboardButtonRequestGeoLocation.cs" />
|
||||||
|
<Compile Include="TL\TLKeyboardButtonRequestPhone.cs" />
|
||||||
|
<Compile Include="TL\TLKeyboardButtonRow.cs" />
|
||||||
|
<Compile Include="TL\TLKeyboardButtonSwitchInline.cs" />
|
||||||
|
<Compile Include="TL\TLKeyboardButtonUrl.cs" />
|
||||||
|
<Compile Include="TL\TLLabeledPrice.cs" />
|
||||||
|
<Compile Include="TL\TLMaskCoords.cs" />
|
||||||
|
<Compile Include="TL\TLMessage.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChannelCreate.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChannelMigrateFrom.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChatAddUser.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChatCreate.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChatDeletePhoto.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChatDeleteUser.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChatEditPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChatEditTitle.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChatJoinedByLink.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionChatMigrateTo.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionGameScore.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionHistoryClear.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionPaymentSent.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionPaymentSentMe.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionPhoneCall.cs" />
|
||||||
|
<Compile Include="TL\TLMessageActionPinMessage.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityBold.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityBotCommand.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityCode.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityEmail.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityHashtag.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityItalic.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityMention.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityMentionName.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityPre.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityTextUrl.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityUnknown.cs" />
|
||||||
|
<Compile Include="TL\TLMessageEntityUrl.cs" />
|
||||||
|
<Compile Include="TL\TLMessageFwdHeader.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaContact.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaDocument.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaGame.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaGeo.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaInvoice.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaUnsupported.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaVenue.cs" />
|
||||||
|
<Compile Include="TL\TLMessageMediaWebPage.cs" />
|
||||||
|
<Compile Include="TL\TLMessageRange.cs" />
|
||||||
|
<Compile Include="TL\TLMessageService.cs" />
|
||||||
|
<Compile Include="TL\TLNearestDc.cs" />
|
||||||
|
<Compile Include="TL\TLNotifyAll.cs" />
|
||||||
|
<Compile Include="TL\TLNotifyChats.cs" />
|
||||||
|
<Compile Include="TL\TLNotifyPeer.cs" />
|
||||||
|
<Compile Include="TL\TLNotifyUsers.cs" />
|
||||||
|
<Compile Include="TL\TLNull.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockAnchor.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockAuthorDate.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockBlockquote.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockChannel.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockCollage.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockCover.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockDivider.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockEmbed.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockEmbedPost.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockFooter.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockHeader.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockList.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockParagraph.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockPreformatted.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockPullquote.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockSlideshow.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockSubheader.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockSubtitle.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockTitle.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockUnsupported.cs" />
|
||||||
|
<Compile Include="TL\TLPageBlockVideo.cs" />
|
||||||
|
<Compile Include="TL\TLPageFull.cs" />
|
||||||
|
<Compile Include="TL\TLPagePart.cs" />
|
||||||
|
<Compile Include="TL\TLPaymentCharge.cs" />
|
||||||
|
<Compile Include="TL\TLPaymentRequestedInfo.cs" />
|
||||||
|
<Compile Include="TL\TLPaymentSavedCredentialsCard.cs" />
|
||||||
|
<Compile Include="TL\TLPeerChannel.cs" />
|
||||||
|
<Compile Include="TL\TLPeerChat.cs" />
|
||||||
|
<Compile Include="TL\TLPeerNotifyEventsAll.cs" />
|
||||||
|
<Compile Include="TL\TLPeerNotifyEventsEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLPeerNotifySettings.cs" />
|
||||||
|
<Compile Include="TL\TLPeerNotifySettingsEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLPeerSettings.cs" />
|
||||||
|
<Compile Include="TL\TLPeerUser.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCall.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallAccepted.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallDiscarded.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallDiscardReasonBusy.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallDiscardReasonDisconnect.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallDiscardReasonHangup.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallDiscardReasonMissed.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallProtocol.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallRequested.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneCallWaiting.cs" />
|
||||||
|
<Compile Include="TL\TLPhoneConnection.cs" />
|
||||||
|
<Compile Include="TL\TLPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLPhotoCachedSize.cs" />
|
||||||
|
<Compile Include="TL\TLPhotoEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLPhotoSize.cs" />
|
||||||
|
<Compile Include="TL\TLPhotoSizeEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLPostAddress.cs" />
|
||||||
|
<Compile Include="TL\TLPrivacyKeyChatInvite.cs" />
|
||||||
|
<Compile Include="TL\TLPrivacyKeyPhoneCall.cs" />
|
||||||
|
<Compile Include="TL\TLPrivacyKeyStatusTimestamp.cs" />
|
||||||
|
<Compile Include="TL\TLPrivacyValueAllowAll.cs" />
|
||||||
|
<Compile Include="TL\TLPrivacyValueAllowContacts.cs" />
|
||||||
|
<Compile Include="TL\TLPrivacyValueAllowUsers.cs" />
|
||||||
|
<Compile Include="TL\TLPrivacyValueDisallowAll.cs" />
|
||||||
|
<Compile Include="TL\TLPrivacyValueDisallowContacts.cs" />
|
||||||
|
<Compile Include="TL\TLPrivacyValueDisallowUsers.cs" />
|
||||||
|
<Compile Include="TL\TLReceivedNotifyMessage.cs" />
|
||||||
|
<Compile Include="TL\TLReplyInlineMarkup.cs" />
|
||||||
|
<Compile Include="TL\TLReplyKeyboardForceReply.cs" />
|
||||||
|
<Compile Include="TL\TLReplyKeyboardHide.cs" />
|
||||||
|
<Compile Include="TL\TLReplyKeyboardMarkup.cs" />
|
||||||
|
<Compile Include="TL\TLRequestInitConnection.cs" />
|
||||||
|
<Compile Include="TL\TLRequestInvokeAfterMsg.cs" />
|
||||||
|
<Compile Include="TL\TLRequestInvokeAfterMsgs.cs" />
|
||||||
|
<Compile Include="TL\TLRequestInvokeWithLayer.cs" />
|
||||||
|
<Compile Include="TL\TLRequestInvokeWithoutUpdates.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageCancelAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageChooseContactAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageGamePlayAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageGeoLocationAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageRecordAudioAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageRecordRoundAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageRecordVideoAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageTypingAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageUploadAudioAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageUploadDocumentAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageUploadPhotoAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageUploadRoundAction.cs" />
|
||||||
|
<Compile Include="TL\TLSendMessageUploadVideoAction.cs" />
|
||||||
|
<Compile Include="TL\TLShippingOption.cs" />
|
||||||
|
<Compile Include="TL\TLStickerPack.cs" />
|
||||||
|
<Compile Include="TL\TLStickerSet.cs" />
|
||||||
|
<Compile Include="TL\TLStickerSetCovered.cs" />
|
||||||
|
<Compile Include="TL\TLStickerSetMultiCovered.cs" />
|
||||||
|
<Compile Include="TL\TLTextBold.cs" />
|
||||||
|
<Compile Include="TL\TLTextConcat.cs" />
|
||||||
|
<Compile Include="TL\TLTextEmail.cs" />
|
||||||
|
<Compile Include="TL\TLTextEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLTextFixed.cs" />
|
||||||
|
<Compile Include="TL\TLTextItalic.cs" />
|
||||||
|
<Compile Include="TL\TLTextPlain.cs" />
|
||||||
|
<Compile Include="TL\TLTextStrike.cs" />
|
||||||
|
<Compile Include="TL\TLTextUnderline.cs" />
|
||||||
|
<Compile Include="TL\TLTextUrl.cs" />
|
||||||
|
<Compile Include="TL\TLTopPeer.cs" />
|
||||||
|
<Compile Include="TL\TLTopPeerCategoryBotsInline.cs" />
|
||||||
|
<Compile Include="TL\TLTopPeerCategoryBotsPM.cs" />
|
||||||
|
<Compile Include="TL\TLTopPeerCategoryChannels.cs" />
|
||||||
|
<Compile Include="TL\TLTopPeerCategoryCorrespondents.cs" />
|
||||||
|
<Compile Include="TL\TLTopPeerCategoryGroups.cs" />
|
||||||
|
<Compile Include="TL\TLTopPeerCategoryPeers.cs" />
|
||||||
|
<Compile Include="TL\TLTrue.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateBotCallbackQuery.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateBotInlineQuery.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateBotInlineSend.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateBotPrecheckoutQuery.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateBotShippingQuery.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateBotWebhookJSON.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateBotWebhookJSONQuery.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChannel.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChannelMessageViews.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChannelPinnedMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChannelTooLong.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChannelWebPage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChatAdmins.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChatParticipantAdd.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChatParticipantAdmin.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChatParticipantDelete.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChatParticipants.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateChatUserTyping.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateConfig.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateContactLink.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateContactRegistered.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateDcOptions.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateDeleteChannelMessages.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateDeleteMessages.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateDialogPinned.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateDraftMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateEditChannelMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateEditMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateEncryptedChatTyping.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateEncryptedMessagesRead.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateEncryption.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateInlineBotCallbackQuery.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateMessageID.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateNewChannelMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateNewEncryptedMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateNewMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateNewStickerSet.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateNotifySettings.cs" />
|
||||||
|
<Compile Include="TL\TLUpdatePhoneCall.cs" />
|
||||||
|
<Compile Include="TL\TLUpdatePinnedDialogs.cs" />
|
||||||
|
<Compile Include="TL\TLUpdatePrivacy.cs" />
|
||||||
|
<Compile Include="TL\TLUpdatePtsChanged.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateReadChannelInbox.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateReadChannelOutbox.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateReadFeaturedStickers.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateReadHistoryInbox.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateReadHistoryOutbox.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateReadMessagesContents.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateRecentStickers.cs" />
|
||||||
|
<Compile Include="TL\TLUpdates.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateSavedGifs.cs" />
|
||||||
|
<Compile Include="TL\TLUpdatesCombined.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateServiceNotification.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateShort.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateShortChatMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateShortMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateShortSentMessage.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateStickerSets.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateStickerSetsOrder.cs" />
|
||||||
|
<Compile Include="TL\TLUpdatesTooLong.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateUserBlocked.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateUserName.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateUserPhone.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateUserPhoto.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateUserStatus.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateUserTyping.cs" />
|
||||||
|
<Compile Include="TL\TLUpdateWebPage.cs" />
|
||||||
|
<Compile Include="TL\TLUser.cs" />
|
||||||
|
<Compile Include="TL\TLUserEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLUserFull.cs" />
|
||||||
|
<Compile Include="TL\TLUserProfilePhoto.cs" />
|
||||||
|
<Compile Include="TL\TLUserProfilePhotoEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLUserStatusEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLUserStatusLastMonth.cs" />
|
||||||
|
<Compile Include="TL\TLUserStatusLastWeek.cs" />
|
||||||
|
<Compile Include="TL\TLUserStatusOffline.cs" />
|
||||||
|
<Compile Include="TL\TLUserStatusOnline.cs" />
|
||||||
|
<Compile Include="TL\TLUserStatusRecently.cs" />
|
||||||
|
<Compile Include="TL\TLWallPaper.cs" />
|
||||||
|
<Compile Include="TL\TLWallPaperSolid.cs" />
|
||||||
|
<Compile Include="TL\TLWebDocument.cs" />
|
||||||
|
<Compile Include="TL\TLWebPage.cs" />
|
||||||
|
<Compile Include="TL\TLWebPageEmpty.cs" />
|
||||||
|
<Compile Include="TL\TLWebPageNotModified.cs" />
|
||||||
|
<Compile Include="TL\TLWebPagePending.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLAbsChannelDifference.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLAbsDifference.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLChannelDifference.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLChannelDifferenceEmpty.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLChannelDifferenceTooLong.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLDifference.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLDifferenceEmpty.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLDifferenceSlice.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLDifferenceTooLong.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLRequestGetChannelDifference.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLRequestGetDifference.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLRequestGetState.cs" />
|
||||||
|
<Compile Include="TL\Updates\TLState.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLAbsCdnFile.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLAbsFile.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLCdnFile.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLCdnFileReuploadNeeded.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLFile.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLFileCdnRedirect.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLRequestGetCdnFile.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLRequestGetFile.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLRequestGetWebFile.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLRequestReuploadCdnFile.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLRequestSaveBigFilePart.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLRequestSaveFilePart.cs" />
|
||||||
|
<Compile Include="TL\Upload\TLWebFile.cs" />
|
||||||
|
<Compile Include="TL\Users\TLRequestGetFullUser.cs" />
|
||||||
|
<Compile Include="TL\Users\TLRequestGetUsers.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup />
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
||||||
|
|
@ -20,7 +20,10 @@ namespace TeleSharp.TL
|
||||||
where t.IsSubclassOf(typeof(TLObject))
|
where t.IsSubclassOf(typeof(TLObject))
|
||||||
where t.GetCustomAttribute(typeof(TLObjectAttribute)) != null
|
where t.GetCustomAttribute(typeof(TLObjectAttribute)) != null
|
||||||
select t).ToDictionary(x => ((TLObjectAttribute)x.GetCustomAttribute(typeof(TLObjectAttribute))).Constructor, x => x);
|
select t).ToDictionary(x => ((TLObjectAttribute)x.GetCustomAttribute(typeof(TLObjectAttribute))).Constructor, x => x);
|
||||||
Types.Add(481674261, typeof(TLVector<>));
|
if (!Types.ContainsKey(481674261))
|
||||||
|
{
|
||||||
|
Types.Add(481674261, typeof(TLVector<>));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
public static Type getType(int Constructor)
|
public static Type getType(int Constructor)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,938 +1,11 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProjectGuid>{D6144517-91D2-4880-86DF-E9FF5D7F383A}</ProjectGuid>
|
|
||||||
<OutputType>Library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>TeleSharp.TL</RootNamespace>
|
|
||||||
<AssemblyName>TeleSharp.TL</AssemblyName>
|
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
||||||
<FileAlignment>512</FileAlignment>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
|
||||||
<ErrorReport>prompt</ErrorReport>
|
|
||||||
<WarningLevel>4</WarningLevel>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="BigMath, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
|
<PackageReference Include="BigMathNetStandard" Version="1.0.0" />
|
||||||
<HintPath>..\packages\BigMath.0.5.0\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1\BigMath.dll</HintPath>
|
|
||||||
<Private>True</Private>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System" />
|
|
||||||
<Reference Include="System.Core" />
|
|
||||||
<Reference Include="System.Xml.Linq" />
|
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
|
||||||
<Reference Include="Microsoft.CSharp" />
|
|
||||||
<Reference Include="System.Data" />
|
|
||||||
<Reference Include="System.Net.Http" />
|
|
||||||
<Reference Include="System.Xml" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<Compile Include="ObjectDeserializer.cs" />
|
</Project>
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
||||||
<Compile Include="TLContext.cs" />
|
|
||||||
<Compile Include="TLMethod.cs" />
|
|
||||||
<Compile Include="TLObject.cs" />
|
|
||||||
<Compile Include="TLUtils.cs" />
|
|
||||||
<Compile Include="TLVector.cs" />
|
|
||||||
<Compile Include="TL\Account\TLAbsPassword.cs" />
|
|
||||||
<Compile Include="TL\Account\TLAuthorizations.cs" />
|
|
||||||
<Compile Include="TL\Account\TLNoPassword.cs" />
|
|
||||||
<Compile Include="TL\Account\TLPassword.cs" />
|
|
||||||
<Compile Include="TL\Account\TLPasswordInputSettings.cs" />
|
|
||||||
<Compile Include="TL\Account\TLPasswordSettings.cs" />
|
|
||||||
<Compile Include="TL\Account\TLPrivacyRules.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestChangePhone.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestCheckUsername.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestConfirmPhone.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestDeleteAccount.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestGetAccountTTL.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestGetAuthorizations.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestGetNotifySettings.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestGetPassword.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestGetPasswordSettings.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestGetPrivacy.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestGetTmpPassword.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestGetWallPapers.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestRegisterDevice.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestReportPeer.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestResetAuthorization.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestResetNotifySettings.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestSendChangePhoneCode.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestSendConfirmPhoneCode.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestSetAccountTTL.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestSetPrivacy.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestUnregisterDevice.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestUpdateDeviceLocked.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestUpdateNotifySettings.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestUpdatePasswordSettings.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestUpdateProfile.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestUpdateStatus.cs" />
|
|
||||||
<Compile Include="TL\Account\TLRequestUpdateUsername.cs" />
|
|
||||||
<Compile Include="TL\Account\TLTmpPassword.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLAbsCodeType.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLAbsSentCodeType.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLAuthorization.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLCheckedPhone.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLCodeTypeCall.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLCodeTypeFlashCall.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLCodeTypeSms.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLExportedAuthorization.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLPasswordRecovery.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestBindTempAuthKey.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestCancelCode.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestCheckPassword.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestCheckPhone.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestDropTempAuthKeys.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestExportAuthorization.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestImportAuthorization.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestImportBotAuthorization.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestLogOut.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestRecoverPassword.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestRequestPasswordRecovery.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestResendCode.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestResetAuthorizations.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestSendCode.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestSendInvites.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestSignIn.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLRequestSignUp.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLSentCode.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLSentCodeTypeApp.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLSentCodeTypeCall.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLSentCodeTypeFlashCall.cs" />
|
|
||||||
<Compile Include="TL\Auth\TLSentCodeTypeSms.cs" />
|
|
||||||
<Compile Include="TL\Bots\TLRequestAnswerWebhookJSONQuery.cs" />
|
|
||||||
<Compile Include="TL\Bots\TLRequestSendCustomRequest.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLChannelParticipant.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLChannelParticipants.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestCheckUsername.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestCreateChannel.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestDeleteChannel.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestDeleteMessages.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestDeleteUserHistory.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestEditAbout.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestEditAdmin.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestEditPhoto.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestEditTitle.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestExportInvite.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestExportMessageLink.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestGetAdminedPublicChannels.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestGetChannels.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestGetFullChannel.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestGetMessages.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestGetParticipant.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestGetParticipants.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestInviteToChannel.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestJoinChannel.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestKickFromChannel.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestLeaveChannel.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestReadHistory.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestReportSpam.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestToggleInvites.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestToggleSignatures.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestUpdatePinnedMessage.cs" />
|
|
||||||
<Compile Include="TL\Channels\TLRequestUpdateUsername.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLAbsBlocked.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLAbsContacts.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLAbsTopPeers.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLBlocked.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLBlockedSlice.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLContacts.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLContactsNotModified.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLFound.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLImportedContacts.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLLink.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestBlock.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestDeleteContact.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestDeleteContacts.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestExportCard.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestGetBlocked.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestGetContacts.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestGetStatuses.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestGetTopPeers.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestImportCard.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestImportContacts.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestResetTopPeerRating.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestResolveUsername.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestSearch.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLRequestUnblock.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLResolvedPeer.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLTopPeers.cs" />
|
|
||||||
<Compile Include="TL\Contacts\TLTopPeersNotModified.cs" />
|
|
||||||
<Compile Include="TL\Help\TLAbsAppUpdate.cs" />
|
|
||||||
<Compile Include="TL\Help\TLAppUpdate.cs" />
|
|
||||||
<Compile Include="TL\Help\TLInviteText.cs" />
|
|
||||||
<Compile Include="TL\Help\TLNoAppUpdate.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestGetAppChangelog.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestGetAppUpdate.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestGetCdnConfig.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestGetConfig.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestGetInviteText.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestGetNearestDc.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestGetSupport.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestGetTermsOfService.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestSaveAppLog.cs" />
|
|
||||||
<Compile Include="TL\Help\TLRequestSetBotUpdatesStatus.cs" />
|
|
||||||
<Compile Include="TL\Help\TLSupport.cs" />
|
|
||||||
<Compile Include="TL\Help\TLTermsOfService.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsAllStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsChats.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsDhConfig.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsDialogs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsFeaturedStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsMessages.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsRecentStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsSavedGifs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsSentEncryptedMessage.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAbsStickerSetInstallResult.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAffectedHistory.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAffectedMessages.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAllStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLAllStickersNotModified.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLArchivedStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLBotCallbackAnswer.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLBotResults.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLChannelMessages.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLChatFull.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLChats.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLChatsSlice.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLDhConfig.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLDhConfigNotModified.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLDialogs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLDialogsSlice.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLFeaturedStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLFeaturedStickersNotModified.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLFoundGifs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLHighScores.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLMessageEditData.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLMessages.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLMessagesSlice.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLPeerDialogs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRecentStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRecentStickersNotModified.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestAcceptEncryption.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestAddChatUser.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestCheckChatInvite.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestClearRecentStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestCreateChat.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestDeleteChatUser.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestDeleteHistory.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestDeleteMessages.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestDiscardEncryption.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestEditChatAdmin.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestEditChatPhoto.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestEditChatTitle.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestEditInlineBotMessage.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestEditMessage.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestExportChatInvite.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestForwardMessage.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestForwardMessages.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetAllChats.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetAllDrafts.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetAllStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetArchivedStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetAttachedStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetBotCallbackAnswer.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetChats.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetCommonChats.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetDhConfig.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetDialogs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetDocumentByHash.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetFeaturedStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetFullChat.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetGameHighScores.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetHistory.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetInlineBotResults.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetInlineGameHighScores.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetMaskStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetMessageEditData.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetMessages.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetMessagesViews.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetPeerDialogs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetPeerSettings.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetPinnedDialogs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetRecentStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetSavedGifs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetStickerSet.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetWebPage.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestGetWebPagePreview.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestHideReportSpam.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestImportChatInvite.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestInstallStickerSet.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestMigrateChat.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReadEncryptedHistory.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReadFeaturedStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReadHistory.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReadMessageContents.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReceivedMessages.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReceivedQueue.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReorderPinnedDialogs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReorderStickerSets.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReportEncryptedSpam.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestReportSpam.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestRequestEncryption.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSaveDraft.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSaveGif.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSaveRecentSticker.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSearch.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSearchGifs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSearchGlobal.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSendEncrypted.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSendEncryptedFile.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSendEncryptedService.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSendInlineBotResult.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSendMedia.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSendMessage.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSetBotCallbackAnswer.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSetBotPrecheckoutResults.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSetBotShippingResults.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSetEncryptedTyping.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSetGameScore.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSetInlineBotResults.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSetInlineGameScore.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestSetTyping.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestStartBot.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestToggleChatAdmins.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestToggleDialogPin.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestUninstallStickerSet.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLRequestUploadMedia.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLSavedGifs.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLSavedGifsNotModified.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLSentEncryptedFile.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLSentEncryptedMessage.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLStickers.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLStickerSet.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLStickerSetInstallResultArchive.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLStickerSetInstallResultSuccess.cs" />
|
|
||||||
<Compile Include="TL\Messages\TLStickersNotModified.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLAbsPaymentResult.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLPaymentForm.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLPaymentReceipt.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLPaymentResult.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLPaymentVerficationNeeded.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLRequestClearSavedInfo.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLRequestGetPaymentForm.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLRequestGetPaymentReceipt.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLRequestGetSavedInfo.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLRequestSendPaymentForm.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLRequestValidateRequestedInfo.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLSavedInfo.cs" />
|
|
||||||
<Compile Include="TL\Payments\TLValidatedRequestedInfo.cs" />
|
|
||||||
<Compile Include="TL\Phone\TLPhoneCall.cs" />
|
|
||||||
<Compile Include="TL\Phone\TLRequestAcceptCall.cs" />
|
|
||||||
<Compile Include="TL\Phone\TLRequestConfirmCall.cs" />
|
|
||||||
<Compile Include="TL\Phone\TLRequestDiscardCall.cs" />
|
|
||||||
<Compile Include="TL\Phone\TLRequestGetCallConfig.cs" />
|
|
||||||
<Compile Include="TL\Phone\TLRequestReceivedCall.cs" />
|
|
||||||
<Compile Include="TL\Phone\TLRequestRequestCall.cs" />
|
|
||||||
<Compile Include="TL\Phone\TLRequestSaveCallDebug.cs" />
|
|
||||||
<Compile Include="TL\Phone\TLRequestSetCallRating.cs" />
|
|
||||||
<Compile Include="TL\Photos\TLAbsPhotos.cs" />
|
|
||||||
<Compile Include="TL\Photos\TLPhoto.cs" />
|
|
||||||
<Compile Include="TL\Photos\TLPhotos.cs" />
|
|
||||||
<Compile Include="TL\Photos\TLPhotosSlice.cs" />
|
|
||||||
<Compile Include="TL\Photos\TLRequestDeletePhotos.cs" />
|
|
||||||
<Compile Include="TL\Photos\TLRequestGetUserPhotos.cs" />
|
|
||||||
<Compile Include="TL\Photos\TLRequestUpdateProfilePhoto.cs" />
|
|
||||||
<Compile Include="TL\Photos\TLRequestUploadProfilePhoto.cs" />
|
|
||||||
<Compile Include="TL\Stickers\TLRequestAddStickerToSet.cs" />
|
|
||||||
<Compile Include="TL\Stickers\TLRequestChangeStickerPosition.cs" />
|
|
||||||
<Compile Include="TL\Stickers\TLRequestCreateStickerSet.cs" />
|
|
||||||
<Compile Include="TL\Stickers\TLRequestRemoveStickerFromSet.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLAbsFileType.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFileGif.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFileJpeg.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFileMov.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFileMp3.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFileMp4.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFilePartial.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFilePdf.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFilePng.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFileUnknown.cs" />
|
|
||||||
<Compile Include="TL\Storage\TLFileWebp.cs" />
|
|
||||||
<Compile Include="TL\TLAbsBool.cs" />
|
|
||||||
<Compile Include="TL\TLAbsBotInlineMessage.cs" />
|
|
||||||
<Compile Include="TL\TLAbsBotInlineResult.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChannelMessagesFilter.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChannelParticipant.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChannelParticipantRole.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChannelParticipantsFilter.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChat.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChatFull.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChatInvite.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChatParticipant.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChatParticipants.cs" />
|
|
||||||
<Compile Include="TL\TLAbsChatPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLAbsContactLink.cs" />
|
|
||||||
<Compile Include="TL\TLAbsDocument.cs" />
|
|
||||||
<Compile Include="TL\TLAbsDocumentAttribute.cs" />
|
|
||||||
<Compile Include="TL\TLAbsDraftMessage.cs" />
|
|
||||||
<Compile Include="TL\TLAbsEncryptedChat.cs" />
|
|
||||||
<Compile Include="TL\TLAbsEncryptedFile.cs" />
|
|
||||||
<Compile Include="TL\TLAbsEncryptedMessage.cs" />
|
|
||||||
<Compile Include="TL\TLAbsExportedChatInvite.cs" />
|
|
||||||
<Compile Include="TL\TLAbsFileLocation.cs" />
|
|
||||||
<Compile Include="TL\TLAbsFoundGif.cs" />
|
|
||||||
<Compile Include="TL\TLAbsGeoPoint.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputBotInlineMessage.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputBotInlineResult.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputChannel.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputChatPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputDocument.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputEncryptedFile.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputFile.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputFileLocation.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputGame.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputGeoPoint.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputMedia.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputNotifyPeer.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputPaymentCredentials.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputPeer.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputPeerNotifyEvents.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputPrivacyKey.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputPrivacyRule.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputStickeredMedia.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputStickerSet.cs" />
|
|
||||||
<Compile Include="TL\TLAbsInputUser.cs" />
|
|
||||||
<Compile Include="TL\TLAbsKeyboardButton.cs" />
|
|
||||||
<Compile Include="TL\TLAbsMessage.cs" />
|
|
||||||
<Compile Include="TL\TLAbsMessageAction.cs" />
|
|
||||||
<Compile Include="TL\TLAbsMessageEntity.cs" />
|
|
||||||
<Compile Include="TL\TLAbsMessageMedia.cs" />
|
|
||||||
<Compile Include="TL\TLAbsMessagesFilter.cs" />
|
|
||||||
<Compile Include="TL\TLAbsNotifyPeer.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPage.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPageBlock.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPeer.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPeerNotifyEvents.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPeerNotifySettings.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPhoneCall.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPhoneCallDiscardReason.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPhotoSize.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPrivacyKey.cs" />
|
|
||||||
<Compile Include="TL\TLAbsPrivacyRule.cs" />
|
|
||||||
<Compile Include="TL\TLAbsReplyMarkup.cs" />
|
|
||||||
<Compile Include="TL\TLAbsReportReason.cs" />
|
|
||||||
<Compile Include="TL\TLAbsRichText.cs" />
|
|
||||||
<Compile Include="TL\TLAbsSendMessageAction.cs" />
|
|
||||||
<Compile Include="TL\TLAbsStickerSetCovered.cs" />
|
|
||||||
<Compile Include="TL\TLAbsTopPeerCategory.cs" />
|
|
||||||
<Compile Include="TL\TLAbsUpdate.cs" />
|
|
||||||
<Compile Include="TL\TLAbsUpdates.cs" />
|
|
||||||
<Compile Include="TL\TLAbsUser.cs" />
|
|
||||||
<Compile Include="TL\TLAbsUserProfilePhoto.cs" />
|
|
||||||
<Compile Include="TL\TLAbsUserStatus.cs" />
|
|
||||||
<Compile Include="TL\TLAbsWallPaper.cs" />
|
|
||||||
<Compile Include="TL\TLAbsWebPage.cs" />
|
|
||||||
<Compile Include="TL\TLAccountDaysTTL.cs" />
|
|
||||||
<Compile Include="TL\TLAuthorization.cs" />
|
|
||||||
<Compile Include="TL\TLBoolFalse.cs" />
|
|
||||||
<Compile Include="TL\TLBoolTrue.cs" />
|
|
||||||
<Compile Include="TL\TLBotCommand.cs" />
|
|
||||||
<Compile Include="TL\TLBotInfo.cs" />
|
|
||||||
<Compile Include="TL\TLBotInlineMediaResult.cs" />
|
|
||||||
<Compile Include="TL\TLBotInlineMessageMediaAuto.cs" />
|
|
||||||
<Compile Include="TL\TLBotInlineMessageMediaContact.cs" />
|
|
||||||
<Compile Include="TL\TLBotInlineMessageMediaGeo.cs" />
|
|
||||||
<Compile Include="TL\TLBotInlineMessageMediaVenue.cs" />
|
|
||||||
<Compile Include="TL\TLBotInlineMessageText.cs" />
|
|
||||||
<Compile Include="TL\TLBotInlineResult.cs" />
|
|
||||||
<Compile Include="TL\TLCdnConfig.cs" />
|
|
||||||
<Compile Include="TL\TLCdnPublicKey.cs" />
|
|
||||||
<Compile Include="TL\TLChannel.cs" />
|
|
||||||
<Compile Include="TL\TLChannelForbidden.cs" />
|
|
||||||
<Compile Include="TL\TLChannelFull.cs" />
|
|
||||||
<Compile Include="TL\TLChannelMessagesFilter.cs" />
|
|
||||||
<Compile Include="TL\TLChannelMessagesFilterEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipant.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipantCreator.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipantEditor.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipantKicked.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipantModerator.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipantsAdmins.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipantsBots.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipantSelf.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipantsKicked.cs" />
|
|
||||||
<Compile Include="TL\TLChannelParticipantsRecent.cs" />
|
|
||||||
<Compile Include="TL\TLChannelRoleEditor.cs" />
|
|
||||||
<Compile Include="TL\TLChannelRoleEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLChannelRoleModerator.cs" />
|
|
||||||
<Compile Include="TL\TLChat.cs" />
|
|
||||||
<Compile Include="TL\TLChatEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLChatForbidden.cs" />
|
|
||||||
<Compile Include="TL\TLChatFull.cs" />
|
|
||||||
<Compile Include="TL\TLChatInvite.cs" />
|
|
||||||
<Compile Include="TL\TLChatInviteAlready.cs" />
|
|
||||||
<Compile Include="TL\TLChatInviteEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLChatInviteExported.cs" />
|
|
||||||
<Compile Include="TL\TLChatParticipant.cs" />
|
|
||||||
<Compile Include="TL\TLChatParticipantAdmin.cs" />
|
|
||||||
<Compile Include="TL\TLChatParticipantCreator.cs" />
|
|
||||||
<Compile Include="TL\TLChatParticipants.cs" />
|
|
||||||
<Compile Include="TL\TLChatParticipantsForbidden.cs" />
|
|
||||||
<Compile Include="TL\TLChatPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLChatPhotoEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLConfig.cs" />
|
|
||||||
<Compile Include="TL\TLContact.cs" />
|
|
||||||
<Compile Include="TL\TLContactBlocked.cs" />
|
|
||||||
<Compile Include="TL\TLContactLinkContact.cs" />
|
|
||||||
<Compile Include="TL\TLContactLinkHasPhone.cs" />
|
|
||||||
<Compile Include="TL\TLContactLinkNone.cs" />
|
|
||||||
<Compile Include="TL\TLContactLinkUnknown.cs" />
|
|
||||||
<Compile Include="TL\TLContactStatus.cs" />
|
|
||||||
<Compile Include="TL\TLDataJSON.cs" />
|
|
||||||
<Compile Include="TL\TLDcOption.cs" />
|
|
||||||
<Compile Include="TL\TLDialog.cs" />
|
|
||||||
<Compile Include="TL\TLDisabledFeature.cs" />
|
|
||||||
<Compile Include="TL\TLDocument.cs" />
|
|
||||||
<Compile Include="TL\TLDocumentAttributeAnimated.cs" />
|
|
||||||
<Compile Include="TL\TLDocumentAttributeAudio.cs" />
|
|
||||||
<Compile Include="TL\TLDocumentAttributeFilename.cs" />
|
|
||||||
<Compile Include="TL\TLDocumentAttributeHasStickers.cs" />
|
|
||||||
<Compile Include="TL\TLDocumentAttributeImageSize.cs" />
|
|
||||||
<Compile Include="TL\TLDocumentAttributeSticker.cs" />
|
|
||||||
<Compile Include="TL\TLDocumentAttributeVideo.cs" />
|
|
||||||
<Compile Include="TL\TLDocumentEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLDraftMessage.cs" />
|
|
||||||
<Compile Include="TL\TLDraftMessageEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLEncryptedChat.cs" />
|
|
||||||
<Compile Include="TL\TLEncryptedChatDiscarded.cs" />
|
|
||||||
<Compile Include="TL\TLEncryptedChatEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLEncryptedChatRequested.cs" />
|
|
||||||
<Compile Include="TL\TLEncryptedChatWaiting.cs" />
|
|
||||||
<Compile Include="TL\TLEncryptedFile.cs" />
|
|
||||||
<Compile Include="TL\TLEncryptedFileEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLEncryptedMessage.cs" />
|
|
||||||
<Compile Include="TL\TLEncryptedMessageService.cs" />
|
|
||||||
<Compile Include="TL\TLError.cs" />
|
|
||||||
<Compile Include="TL\TLExportedMessageLink.cs" />
|
|
||||||
<Compile Include="TL\TLFileLocation.cs" />
|
|
||||||
<Compile Include="TL\TLFileLocationUnavailable.cs" />
|
|
||||||
<Compile Include="TL\TLFoundGif.cs" />
|
|
||||||
<Compile Include="TL\TLFoundGifCached.cs" />
|
|
||||||
<Compile Include="TL\TLGame.cs" />
|
|
||||||
<Compile Include="TL\TLGeoPoint.cs" />
|
|
||||||
<Compile Include="TL\TLGeoPointEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLHighScore.cs" />
|
|
||||||
<Compile Include="TL\TLImportedContact.cs" />
|
|
||||||
<Compile Include="TL\TLInlineBotSwitchPM.cs" />
|
|
||||||
<Compile Include="TL\TLInputAppEvent.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineMessageGame.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineMessageID.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineMessageMediaAuto.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineMessageMediaContact.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineMessageMediaGeo.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineMessageMediaVenue.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineMessageText.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineResult.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineResultDocument.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineResultGame.cs" />
|
|
||||||
<Compile Include="TL\TLInputBotInlineResultPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLInputChannel.cs" />
|
|
||||||
<Compile Include="TL\TLInputChannelEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputChatPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLInputChatPhotoEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputChatUploadedPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLInputDocument.cs" />
|
|
||||||
<Compile Include="TL\TLInputDocumentEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputDocumentFileLocation.cs" />
|
|
||||||
<Compile Include="TL\TLInputEncryptedChat.cs" />
|
|
||||||
<Compile Include="TL\TLInputEncryptedFile.cs" />
|
|
||||||
<Compile Include="TL\TLInputEncryptedFileBigUploaded.cs" />
|
|
||||||
<Compile Include="TL\TLInputEncryptedFileEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputEncryptedFileLocation.cs" />
|
|
||||||
<Compile Include="TL\TLInputEncryptedFileUploaded.cs" />
|
|
||||||
<Compile Include="TL\TLInputFile.cs" />
|
|
||||||
<Compile Include="TL\TLInputFileBig.cs" />
|
|
||||||
<Compile Include="TL\TLInputFileLocation.cs" />
|
|
||||||
<Compile Include="TL\TLInputGameID.cs" />
|
|
||||||
<Compile Include="TL\TLInputGameShortName.cs" />
|
|
||||||
<Compile Include="TL\TLInputGeoPoint.cs" />
|
|
||||||
<Compile Include="TL\TLInputGeoPointEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaContact.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaDocument.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaDocumentExternal.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaGame.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaGeoPoint.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaGifExternal.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaInvoice.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaPhotoExternal.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaUploadedDocument.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaUploadedPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaUploadedThumbDocument.cs" />
|
|
||||||
<Compile Include="TL\TLInputMediaVenue.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessageEntityMentionName.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterChatPhotos.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterDocument.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterGif.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterMusic.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterPhoneCalls.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterPhotos.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterPhotoVideo.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterPhotoVideoDocuments.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterRoundVideo.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterRoundVoice.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterUrl.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterVideo.cs" />
|
|
||||||
<Compile Include="TL\TLInputMessagesFilterVoice.cs" />
|
|
||||||
<Compile Include="TL\TLInputNotifyAll.cs" />
|
|
||||||
<Compile Include="TL\TLInputNotifyChats.cs" />
|
|
||||||
<Compile Include="TL\TLInputNotifyPeer.cs" />
|
|
||||||
<Compile Include="TL\TLInputNotifyUsers.cs" />
|
|
||||||
<Compile Include="TL\TLInputPaymentCredentials.cs" />
|
|
||||||
<Compile Include="TL\TLInputPaymentCredentialsSaved.cs" />
|
|
||||||
<Compile Include="TL\TLInputPeerChannel.cs" />
|
|
||||||
<Compile Include="TL\TLInputPeerChat.cs" />
|
|
||||||
<Compile Include="TL\TLInputPeerEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputPeerNotifyEventsAll.cs" />
|
|
||||||
<Compile Include="TL\TLInputPeerNotifyEventsEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputPeerNotifySettings.cs" />
|
|
||||||
<Compile Include="TL\TLInputPeerSelf.cs" />
|
|
||||||
<Compile Include="TL\TLInputPeerUser.cs" />
|
|
||||||
<Compile Include="TL\TLInputPhoneCall.cs" />
|
|
||||||
<Compile Include="TL\TLInputPhoneContact.cs" />
|
|
||||||
<Compile Include="TL\TLInputPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLInputPhotoEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputPrivacyKeyChatInvite.cs" />
|
|
||||||
<Compile Include="TL\TLInputPrivacyKeyPhoneCall.cs" />
|
|
||||||
<Compile Include="TL\TLInputPrivacyKeyStatusTimestamp.cs" />
|
|
||||||
<Compile Include="TL\TLInputPrivacyValueAllowAll.cs" />
|
|
||||||
<Compile Include="TL\TLInputPrivacyValueAllowContacts.cs" />
|
|
||||||
<Compile Include="TL\TLInputPrivacyValueAllowUsers.cs" />
|
|
||||||
<Compile Include="TL\TLInputPrivacyValueDisallowAll.cs" />
|
|
||||||
<Compile Include="TL\TLInputPrivacyValueDisallowContacts.cs" />
|
|
||||||
<Compile Include="TL\TLInputPrivacyValueDisallowUsers.cs" />
|
|
||||||
<Compile Include="TL\TLInputReportReasonOther.cs" />
|
|
||||||
<Compile Include="TL\TLInputReportReasonPornography.cs" />
|
|
||||||
<Compile Include="TL\TLInputReportReasonSpam.cs" />
|
|
||||||
<Compile Include="TL\TLInputReportReasonViolence.cs" />
|
|
||||||
<Compile Include="TL\TLInputStickeredMediaDocument.cs" />
|
|
||||||
<Compile Include="TL\TLInputStickeredMediaPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLInputStickerSetEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputStickerSetID.cs" />
|
|
||||||
<Compile Include="TL\TLInputStickerSetItem.cs" />
|
|
||||||
<Compile Include="TL\TLInputStickerSetShortName.cs" />
|
|
||||||
<Compile Include="TL\TLInputUser.cs" />
|
|
||||||
<Compile Include="TL\TLInputUserEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLInputUserSelf.cs" />
|
|
||||||
<Compile Include="TL\TLInputWebDocument.cs" />
|
|
||||||
<Compile Include="TL\TLInputWebFileLocation.cs" />
|
|
||||||
<Compile Include="TL\TLInvoice.cs" />
|
|
||||||
<Compile Include="TL\TLKeyboardButton.cs" />
|
|
||||||
<Compile Include="TL\TLKeyboardButtonBuy.cs" />
|
|
||||||
<Compile Include="TL\TLKeyboardButtonCallback.cs" />
|
|
||||||
<Compile Include="TL\TLKeyboardButtonGame.cs" />
|
|
||||||
<Compile Include="TL\TLKeyboardButtonRequestGeoLocation.cs" />
|
|
||||||
<Compile Include="TL\TLKeyboardButtonRequestPhone.cs" />
|
|
||||||
<Compile Include="TL\TLKeyboardButtonRow.cs" />
|
|
||||||
<Compile Include="TL\TLKeyboardButtonSwitchInline.cs" />
|
|
||||||
<Compile Include="TL\TLKeyboardButtonUrl.cs" />
|
|
||||||
<Compile Include="TL\TLLabeledPrice.cs" />
|
|
||||||
<Compile Include="TL\TLMaskCoords.cs" />
|
|
||||||
<Compile Include="TL\TLMessage.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChannelCreate.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChannelMigrateFrom.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChatAddUser.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChatCreate.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChatDeletePhoto.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChatDeleteUser.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChatEditPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChatEditTitle.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChatJoinedByLink.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionChatMigrateTo.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionGameScore.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionHistoryClear.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionPaymentSent.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionPaymentSentMe.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionPhoneCall.cs" />
|
|
||||||
<Compile Include="TL\TLMessageActionPinMessage.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityBold.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityBotCommand.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityCode.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityEmail.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityHashtag.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityItalic.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityMention.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityMentionName.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityPre.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityTextUrl.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityUnknown.cs" />
|
|
||||||
<Compile Include="TL\TLMessageEntityUrl.cs" />
|
|
||||||
<Compile Include="TL\TLMessageFwdHeader.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaContact.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaDocument.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaGame.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaGeo.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaInvoice.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaUnsupported.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaVenue.cs" />
|
|
||||||
<Compile Include="TL\TLMessageMediaWebPage.cs" />
|
|
||||||
<Compile Include="TL\TLMessageRange.cs" />
|
|
||||||
<Compile Include="TL\TLMessageService.cs" />
|
|
||||||
<Compile Include="TL\TLNearestDc.cs" />
|
|
||||||
<Compile Include="TL\TLNotifyAll.cs" />
|
|
||||||
<Compile Include="TL\TLNotifyChats.cs" />
|
|
||||||
<Compile Include="TL\TLNotifyPeer.cs" />
|
|
||||||
<Compile Include="TL\TLNotifyUsers.cs" />
|
|
||||||
<Compile Include="TL\TLNull.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockAnchor.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockAuthorDate.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockBlockquote.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockChannel.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockCollage.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockCover.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockDivider.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockEmbed.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockEmbedPost.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockFooter.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockHeader.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockList.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockParagraph.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockPreformatted.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockPullquote.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockSlideshow.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockSubheader.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockSubtitle.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockTitle.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockUnsupported.cs" />
|
|
||||||
<Compile Include="TL\TLPageBlockVideo.cs" />
|
|
||||||
<Compile Include="TL\TLPageFull.cs" />
|
|
||||||
<Compile Include="TL\TLPagePart.cs" />
|
|
||||||
<Compile Include="TL\TLPaymentCharge.cs" />
|
|
||||||
<Compile Include="TL\TLPaymentRequestedInfo.cs" />
|
|
||||||
<Compile Include="TL\TLPaymentSavedCredentialsCard.cs" />
|
|
||||||
<Compile Include="TL\TLPeerChannel.cs" />
|
|
||||||
<Compile Include="TL\TLPeerChat.cs" />
|
|
||||||
<Compile Include="TL\TLPeerNotifyEventsAll.cs" />
|
|
||||||
<Compile Include="TL\TLPeerNotifyEventsEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLPeerNotifySettings.cs" />
|
|
||||||
<Compile Include="TL\TLPeerNotifySettingsEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLPeerSettings.cs" />
|
|
||||||
<Compile Include="TL\TLPeerUser.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCall.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallAccepted.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallDiscarded.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallDiscardReasonBusy.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallDiscardReasonDisconnect.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallDiscardReasonHangup.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallDiscardReasonMissed.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallProtocol.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallRequested.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneCallWaiting.cs" />
|
|
||||||
<Compile Include="TL\TLPhoneConnection.cs" />
|
|
||||||
<Compile Include="TL\TLPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLPhotoCachedSize.cs" />
|
|
||||||
<Compile Include="TL\TLPhotoEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLPhotoSize.cs" />
|
|
||||||
<Compile Include="TL\TLPhotoSizeEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLPostAddress.cs" />
|
|
||||||
<Compile Include="TL\TLPrivacyKeyChatInvite.cs" />
|
|
||||||
<Compile Include="TL\TLPrivacyKeyPhoneCall.cs" />
|
|
||||||
<Compile Include="TL\TLPrivacyKeyStatusTimestamp.cs" />
|
|
||||||
<Compile Include="TL\TLPrivacyValueAllowAll.cs" />
|
|
||||||
<Compile Include="TL\TLPrivacyValueAllowContacts.cs" />
|
|
||||||
<Compile Include="TL\TLPrivacyValueAllowUsers.cs" />
|
|
||||||
<Compile Include="TL\TLPrivacyValueDisallowAll.cs" />
|
|
||||||
<Compile Include="TL\TLPrivacyValueDisallowContacts.cs" />
|
|
||||||
<Compile Include="TL\TLPrivacyValueDisallowUsers.cs" />
|
|
||||||
<Compile Include="TL\TLReceivedNotifyMessage.cs" />
|
|
||||||
<Compile Include="TL\TLReplyInlineMarkup.cs" />
|
|
||||||
<Compile Include="TL\TLReplyKeyboardForceReply.cs" />
|
|
||||||
<Compile Include="TL\TLReplyKeyboardHide.cs" />
|
|
||||||
<Compile Include="TL\TLReplyKeyboardMarkup.cs" />
|
|
||||||
<Compile Include="TL\TLRequestInitConnection.cs" />
|
|
||||||
<Compile Include="TL\TLRequestInvokeAfterMsg.cs" />
|
|
||||||
<Compile Include="TL\TLRequestInvokeAfterMsgs.cs" />
|
|
||||||
<Compile Include="TL\TLRequestInvokeWithLayer.cs" />
|
|
||||||
<Compile Include="TL\TLRequestInvokeWithoutUpdates.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageCancelAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageChooseContactAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageGamePlayAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageGeoLocationAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageRecordAudioAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageRecordRoundAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageRecordVideoAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageTypingAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageUploadAudioAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageUploadDocumentAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageUploadPhotoAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageUploadRoundAction.cs" />
|
|
||||||
<Compile Include="TL\TLSendMessageUploadVideoAction.cs" />
|
|
||||||
<Compile Include="TL\TLShippingOption.cs" />
|
|
||||||
<Compile Include="TL\TLStickerPack.cs" />
|
|
||||||
<Compile Include="TL\TLStickerSet.cs" />
|
|
||||||
<Compile Include="TL\TLStickerSetCovered.cs" />
|
|
||||||
<Compile Include="TL\TLStickerSetMultiCovered.cs" />
|
|
||||||
<Compile Include="TL\TLTextBold.cs" />
|
|
||||||
<Compile Include="TL\TLTextConcat.cs" />
|
|
||||||
<Compile Include="TL\TLTextEmail.cs" />
|
|
||||||
<Compile Include="TL\TLTextEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLTextFixed.cs" />
|
|
||||||
<Compile Include="TL\TLTextItalic.cs" />
|
|
||||||
<Compile Include="TL\TLTextPlain.cs" />
|
|
||||||
<Compile Include="TL\TLTextStrike.cs" />
|
|
||||||
<Compile Include="TL\TLTextUnderline.cs" />
|
|
||||||
<Compile Include="TL\TLTextUrl.cs" />
|
|
||||||
<Compile Include="TL\TLTopPeer.cs" />
|
|
||||||
<Compile Include="TL\TLTopPeerCategoryBotsInline.cs" />
|
|
||||||
<Compile Include="TL\TLTopPeerCategoryBotsPM.cs" />
|
|
||||||
<Compile Include="TL\TLTopPeerCategoryChannels.cs" />
|
|
||||||
<Compile Include="TL\TLTopPeerCategoryCorrespondents.cs" />
|
|
||||||
<Compile Include="TL\TLTopPeerCategoryGroups.cs" />
|
|
||||||
<Compile Include="TL\TLTopPeerCategoryPeers.cs" />
|
|
||||||
<Compile Include="TL\TLTrue.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateBotCallbackQuery.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateBotInlineQuery.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateBotInlineSend.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateBotPrecheckoutQuery.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateBotShippingQuery.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateBotWebhookJSON.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateBotWebhookJSONQuery.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChannel.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChannelMessageViews.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChannelPinnedMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChannelTooLong.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChannelWebPage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChatAdmins.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChatParticipantAdd.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChatParticipantAdmin.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChatParticipantDelete.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChatParticipants.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateChatUserTyping.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateConfig.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateContactLink.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateContactRegistered.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateDcOptions.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateDeleteChannelMessages.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateDeleteMessages.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateDialogPinned.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateDraftMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateEditChannelMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateEditMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateEncryptedChatTyping.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateEncryptedMessagesRead.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateEncryption.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateInlineBotCallbackQuery.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateMessageID.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateNewChannelMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateNewEncryptedMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateNewMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateNewStickerSet.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateNotifySettings.cs" />
|
|
||||||
<Compile Include="TL\TLUpdatePhoneCall.cs" />
|
|
||||||
<Compile Include="TL\TLUpdatePinnedDialogs.cs" />
|
|
||||||
<Compile Include="TL\TLUpdatePrivacy.cs" />
|
|
||||||
<Compile Include="TL\TLUpdatePtsChanged.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateReadChannelInbox.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateReadChannelOutbox.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateReadFeaturedStickers.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateReadHistoryInbox.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateReadHistoryOutbox.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateReadMessagesContents.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateRecentStickers.cs" />
|
|
||||||
<Compile Include="TL\TLUpdates.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateSavedGifs.cs" />
|
|
||||||
<Compile Include="TL\TLUpdatesCombined.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateServiceNotification.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateShort.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateShortChatMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateShortMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateShortSentMessage.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateStickerSets.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateStickerSetsOrder.cs" />
|
|
||||||
<Compile Include="TL\TLUpdatesTooLong.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateUserBlocked.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateUserName.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateUserPhone.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateUserPhoto.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateUserStatus.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateUserTyping.cs" />
|
|
||||||
<Compile Include="TL\TLUpdateWebPage.cs" />
|
|
||||||
<Compile Include="TL\TLUser.cs" />
|
|
||||||
<Compile Include="TL\TLUserEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLUserFull.cs" />
|
|
||||||
<Compile Include="TL\TLUserProfilePhoto.cs" />
|
|
||||||
<Compile Include="TL\TLUserProfilePhotoEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLUserStatusEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLUserStatusLastMonth.cs" />
|
|
||||||
<Compile Include="TL\TLUserStatusLastWeek.cs" />
|
|
||||||
<Compile Include="TL\TLUserStatusOffline.cs" />
|
|
||||||
<Compile Include="TL\TLUserStatusOnline.cs" />
|
|
||||||
<Compile Include="TL\TLUserStatusRecently.cs" />
|
|
||||||
<Compile Include="TL\TLWallPaper.cs" />
|
|
||||||
<Compile Include="TL\TLWallPaperSolid.cs" />
|
|
||||||
<Compile Include="TL\TLWebDocument.cs" />
|
|
||||||
<Compile Include="TL\TLWebPage.cs" />
|
|
||||||
<Compile Include="TL\TLWebPageEmpty.cs" />
|
|
||||||
<Compile Include="TL\TLWebPageNotModified.cs" />
|
|
||||||
<Compile Include="TL\TLWebPagePending.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLAbsChannelDifference.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLAbsDifference.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLChannelDifference.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLChannelDifferenceEmpty.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLChannelDifferenceTooLong.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLDifference.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLDifferenceEmpty.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLDifferenceSlice.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLDifferenceTooLong.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLRequestGetChannelDifference.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLRequestGetDifference.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLRequestGetState.cs" />
|
|
||||||
<Compile Include="TL\Updates\TLState.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLAbsCdnFile.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLAbsFile.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLCdnFile.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLCdnFileReuploadNeeded.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLFile.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLFileCdnRedirect.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLRequestGetCdnFile.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLRequestGetFile.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLRequestGetWebFile.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLRequestReuploadCdnFile.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLRequestSaveBigFilePart.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLRequestSaveFilePart.cs" />
|
|
||||||
<Compile Include="TL\Upload\TLWebFile.cs" />
|
|
||||||
<Compile Include="TL\Users\TLRequestGetFullUser.cs" />
|
|
||||||
<Compile Include="TL\Users\TLRequestGetUsers.cs" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<None Include="packages.config" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup />
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
|
||||||
<Target Name="BeforeBuild">
|
|
||||||
</Target>
|
|
||||||
<Target Name="AfterBuild">
|
|
||||||
</Target>
|
|
||||||
-->
|
|
||||||
</Project>
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<packages>
|
|
||||||
<package id="BigMath" version="0.5.0" targetFramework="net452" />
|
|
||||||
</packages>
|
|
||||||
Loading…
Reference in a new issue