This repository was archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTelegramSharp.csproj
More file actions
114 lines (114 loc) · 5.52 KB
/
TelegramSharp.csproj
File metadata and controls
114 lines (114 loc) · 5.52 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E5C69981-038D-4B75-B715-B2DAADFD427E}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>TelegramSharp</RootNamespace>
<AssemblyName>TelegramSharp</AssemblyName>
<ReleaseVersion>0.2</ReleaseVersion>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<TargetFrameworkProfile />
</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>
<RunCodeAnalysis>true</RunCodeAnalysis>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<RunCodeAnalysis>true</RunCodeAnalysis>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<DocumentationFile>bin\Release\TelegramSharp.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Win32.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>packages\Microsoft.Win32.Primitives.4.0.0\lib\net46\Microsoft.Win32.Primitives.dll</HintPath>
<Private>True</Private>
</Reference>
<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.Net" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Runtime.Serialization" />
</ItemGroup>
<ItemGroup>
<Compile Include="Core\MessageHandlers.cs" />
<Compile Include="Core\EventHandlers.cs" />
<Compile Include="Core\Objects\NetAPI\CallbackQuery.cs" />
<Compile Include="Core\Objects\NetAPI\Inline\InlineMode.cs" />
<Compile Include="Core\Objects\NetAPI\Inline\InputMessageContents.cs" />
<Compile Include="Core\Objects\NetAPI\Keyboard\ForceReply.cs" />
<Compile Include="Core\Objects\NetAPI\Keyboard\InlineKeyboardElements.cs" />
<Compile Include="Core\Objects\NetAPI\Keyboard\ReplyKeyboardHide.cs" />
<Compile Include="Core\Objects\NetAPI\Keyboard\IReplyMarkup.cs" />
<Compile Include="Core\Objects\NetAPI\Keyboard\KeyboardButton.cs" />
<Compile Include="Core\Objects\NetAPI\Keyboard\KeyboardRow.cs" />
<Compile Include="Core\Objects\NetAPI\Keyboard\Keyboard.cs" />
<Compile Include="Core\Objects\NetAPI\TextBuilder\BaseComponent.cs" />
<Compile Include="Core\Objects\NetAPI\TextBuilder\TextComponents.cs" />
<Compile Include="Core\Objects\NetAPI\TextBuilder\TextElements.cs" />
<Compile Include="Core\Utils\RequestUtility.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Core\JSONDataManager.cs" />
<Compile Include="Core\MessageParser.cs" />
<Compile Include="Core\NetworkSender.cs" />
<Compile Include="Core\Objects\BotSetup.cs" />
<Compile Include="Core\Objects\NetAPI\Audio.cs" />
<Compile Include="Core\Objects\NetAPI\Chat.cs" />
<Compile Include="Core\Objects\NetAPI\Contact.cs" />
<Compile Include="Core\Objects\NetAPI\Document.cs" />
<Compile Include="Core\Objects\NetAPI\File.cs" />
<Compile Include="Core\Objects\NetAPI\ForceReply.cs" />
<Compile Include="Core\Objects\NetAPI\GetMeServerUpdate.cs" />
<Compile Include="Core\Objects\NetAPI\Location.cs" />
<Compile Include="Core\Objects\NetAPI\LoggableMessage.cs" />
<Compile Include="Core\Objects\NetAPI\Message.cs" />
<Compile Include="Core\Objects\NetAPI\MessageServerUpdate.cs" />
<Compile Include="Core\Objects\NetAPI\PhotoSize.cs" />
<Compile Include="Core\Objects\NetAPI\Sticker.cs" />
<Compile Include="Core\Objects\NetAPI\Update.cs" />
<Compile Include="Core\Objects\NetAPI\User.cs" />
<Compile Include="Core\Objects\NetAPI\UserProfilePhotos.cs" />
<Compile Include="Core\Objects\NetAPI\Video.cs" />
<Compile Include="Core\Objects\NetAPI\Voice.cs" />
<Compile Include="Core\Objects\OutgoingMessage.cs" />
<Compile Include="Core\Logger.cs" />
<Compile Include="Core\TelegramService.cs" />
<Compile Include="Core\ConfigManager.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="MSBuild" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>