-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAutoReplyUserBot.csproj
More file actions
65 lines (62 loc) · 2.81 KB
/
AutoReplyUserBot.csproj
File metadata and controls
65 lines (62 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Version>2.0.0</Version>
<Authors>Muaath Alqarni</Authors>
<Platforms>AnyCPU;x86;x64</Platforms>
<SignAssembly>false</SignAssembly>
<StartupObject>AutoReplyUserBot.Program</StartupObject>
<Description>Telegram Userbot for Auto-repling!</Description>
<Product>Auto-Reply UserBot</Product>
<NeutralLanguage>en</NeutralLanguage>
<RepositoryType>public</RepositoryType>
<RepositoryUrl>https://github.com/Muaath5/AutoReplyUserBot</RepositoryUrl>
<PackageReleaseNotes>- Improving code style</PackageReleaseNotes>
<PackageTags>bot;userbot;telegram;tdlib;automation</PackageTags>
<PackageProjectUrl>https://github.com/Muaath5/AutoReplyUserBot</PackageProjectUrl>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<EmbeddedResource Remove="bin\**" />
<None Remove="bin\**" />
</ItemGroup>
<ItemGroup>
<Reference Include="Telegram.Td">
<SpecificVersion>False</SpecificVersion>
<HintPath Condition=" '$(Platform)' == 'x86' ">..\TDLibBinaries\c#\windows\latest\x86\release\Telegram.Td.dll</HintPath>
<HintPath Condition=" '$(Platform)' == 'x64' ">..\TDLibBinaries\c#\windows\latest\x64\release\Telegram.Td.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'x86' ">
<Content Include="..\TDLibBinaries\c#\windows\latest\x86\release\zlib1.dll">
<Link>zlib1.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\TDLibBinaries\c#\windows\latest\x86\release\libcrypto-1_1.dll">
<Link>libcrypto-1_1.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\TDLibBinaries\c#\windows\latest\x86\release\libssl-1_1.dll">
<Link>libssl-1_1.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'x64' ">
<Content Include="..\TDLibBinaries\c#\windows\latest\x64\release\zlib1.dll">
<Link>zlib1.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\TDLibBinaries\c#\windows\latest\x64\release\libcrypto-1_1-x64.dll">
<Link>libcrypto-1_1-x64.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\TDLibBinaries\c#\windows\latest\x64\release\libssl-1_1-x64.dll">
<Link>libssl-1_1-x64.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>