2016-10-14 10:15:33 +02:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2016-10-14 10:15:33 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
|
<ProjectGuid>{400D2544-1CC6-4D8A-A62C-2292D9947A16}</ProjectGuid>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
<PackageId>TLSharp</PackageId>
|
|
|
|
|
|
<Title>Telegram client library implemented in C#</Title>
|
|
|
|
|
|
<Authors>Ilya P</Authors>
|
|
|
|
|
|
<PackageVersion Condition=" '$(VERSION)' == '' ">0.1.0.433</PackageVersion>
|
|
|
|
|
|
<PackageTags>telegram client;telegram API</PackageTags>
|
|
|
|
|
|
<PackageProjectUrl>http://sochix.github.io/TLSharp/</PackageProjectUrl>
|
|
|
|
|
|
<PackageIconUrl>https://core.telegram.org/favicon.ico</PackageIconUrl>
|
|
|
|
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
|
|
|
|
<Description>Unofficial Telegram (http://telegram.org) client library implemented in C#. Latest TL scheme
|
|
|
|
|
|
supported.
|
|
|
|
|
|
|
|
|
|
|
|
Consider donation to speed up development process.
|
|
|
|
|
|
|
|
|
|
|
|
Bitcoin wallet: 3K1ocweFgaHnAibJ3n6hX7RNZWFTFcJjUe
|
|
|
|
|
|
|
|
|
|
|
|
It's a perfect fit for any developer who would like to send data directly to Telegram users or write own
|
|
|
|
|
|
custom Telegram client.</Description>
|
|
|
|
|
|
<PackageLicense>MIT</PackageLicense>
|
|
|
|
|
|
<Copyright>Copyright 2019</Copyright>
|
|
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
|
<RepositoryUrl>https://github.com/sochix/TLSharp</RepositoryUrl>
|
|
|
|
|
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
|
|
|
|
|
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
|
|
|
|
|
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
|
|
|
|
|
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
|
|
|
|
|
|
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
|
|
|
|
|
|
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
|
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
2016-10-14 10:15:33 +02:00
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
|
<RootNamespace>TLSharp.Core</RootNamespace>
|
|
|
|
|
|
<AssemblyName>TLSharp.Core</AssemblyName>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
2016-10-14 10:15:33 +02:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);IncludeTLAssets</TargetsForTfmSpecificBuildOutput>
|
2016-10-14 10:15:33 +02:00
|
|
|
|
</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>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
<PackageReference Include="BigMathNetStandard" Version="1.0.0" />
|
|
|
|
|
|
<PackageReference Include="DotNetZip" Version="1.13.5" />
|
|
|
|
|
|
<!-- <PackageReference Include="Ionic.Zlib" Version="1.9.1.5" />-->
|
|
|
|
|
|
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net472' ">
|
2016-10-14 10:15:33 +02:00
|
|
|
|
<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>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
<ProjectReference Include="..\TeleSharp.TL\TeleSharp.TL.csproj" PrivateAssets="All">
|
|
|
|
|
|
<Project>{d6144517-91d2-4880-86df-e9ff5d7f383a}</Project>
|
|
|
|
|
|
<Name>TeleSharp.TL</Name>
|
|
|
|
|
|
</ProjectReference>
|
2016-10-14 10:15:33 +02:00
|
|
|
|
</ItemGroup>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
|
|
|
|
|
|
<Target Name="IncludeTLAssets">
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<BuildOutputInPackage Include="$(OutputPath)\TeleSharp.TL.dll" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
2016-10-14 10:15:33 +02:00
|
|
|
|
<ItemGroup>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
<_UnmanagedRegistrationCache Remove="obj\TLSharp.Core.csproj.UnmanagedRegistration.cache" />
|
2016-10-14 10:15:33 +02:00
|
|
|
|
</ItemGroup>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
|
2016-10-14 10:15:33 +02:00
|
|
|
|
<ItemGroup>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
<_ResolveComReferenceCache Remove="obj\Debug\netstandard2.0\TLSharp.Core.csproj.ResolveComReference.cache" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<IntermediateAssembly Remove="obj\Debug\netstandard2.0\TLSharp.Core.dll" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<_DebugSymbolsIntermediatePath Remove="obj\Debug\netstandard2.0\TLSharp.Core.pdb" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<_DeploymentManifestEntryPoint Remove="obj\Debug\netstandard2.0\TLSharp.Core.dll" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ApplicationManifest Remove="obj\Debug\netstandard2.0\Native.TLSharp.Core.manifest" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<DeployManifest Remove="obj\Debug\netstandard2.0\TLSharp.Core.application" />
|
2016-10-14 10:15:33 +02:00
|
|
|
|
</ItemGroup>
|
2020-01-08 13:05:58 +01:00
|
|
|
|
|
2016-10-14 10:15:33 +02:00
|
|
|
|
<!-- 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>
|
|
|
|
|
|
-->
|
2016-07-21 07:57:15 +02:00
|
|
|
|
</Project>
|