forked from Sir-Odie/CS-ELBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcs-elbot.csproj
122 lines (122 loc) · 6.59 KB
/
cs-elbot.csproj
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
115
116
117
118
119
120
121
122
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>cs_elbot</RootNamespace>
<AssemblyName>cs-elbot</AssemblyName>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B56F4655-1BC5-4014-86E7-3429CC521001}</ProjectGuid>
<StartupObject>
</StartupObject>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>obj\Debug\</OutputPath>
<Optimize>true</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugSymbols>True</DebugSymbols>
<DebugType>Full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<UseVSHostingProcess>false</UseVSHostingProcess>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>obj\Release\</OutputPath>
<Optimize>True</Optimize>
<DefineConstants>TRACE</DefineConstants>
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<UseVSHostingProcess>false</UseVSHostingProcess>
</PropertyGroup>
<ItemGroup>
<Reference Include="MySql.Data, Version=5.1.7.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Include="AdvancedCommunication\AFKCommandHandler.cs" />
<Compile Include="AdvancedCommunication\AltAdvertsHandler.cs" />
<Compile Include="AdvancedCommunication\BANCommandHandler.cs" />
<Compile Include="AdvancedCommunication\CancelTrade.cs" />
<Compile Include="AdvancedCommunication\AssessThreat.cs" />
<Compile Include="AdvancedCommunication\UseItemCommandHandler.cs" />
<Compile Include="AdvancedCommunication\ISOnlineCommandHandler.cs" />
<Compile Include="AdvancedCommunication\PRIZECommandHandler.cs" />
<Compile Include="AdvancedCommunication\GAMBLECommandHandler.cs" />
<Compile Include="AdvancedCommunication\DepositCommandHandler.cs" />
<Compile Include="AdvancedCommunication\WithdrawCommandHandler.cs" />
<Compile Include="AdvancedCommunication\OpenStorage.cs" />
<Compile Include="AdvancedCommunication\GiveToCommandHandler.cs" />
<Compile Include="AdvancedCommunication\GotoCommandHandler.cs" />
<Compile Include="AdvancedCommunication\INVRCommandHandler.cs" />
<Compile Include="AdvancedCommunication\QuitCommandHandler.cs" />
<Compile Include="AdvancedCommunication\ReserveCommandHandler.cs" />
<Compile Include="AdvancedCommunication\UseObjectCommandHandler.cs" />
<Compile Include="AdvancedCommunication\WearCommandHandler.cs" />
<Compile Include="AdvancedCommunication\SitStandCommandHandler.cs" />
<Compile Include="AdvancedCommunication\WhosIsTrading.cs" />
<Compile Include="AdvancedCommunication\LaunchCommandHandler.cs" />
<Compile Include="AdvancedCommunication\STOCommandHandler.cs" />
<Compile Include="AdvancedCommunication\DESCRIBECommandHandler.cs" />
<Compile Include="AdvancedCommunication\ELTCCommandHandler.cs" />
<Compile Include="AdvancedCommunication\housekeeping.cs" />
<Compile Include="AdvancedCommunication\MOVECommandHandler.cs" />
<Compile Include="AdvancedCommunication\RETRADECommandHandler.cs" />
<Compile Include="AdvancedCommunication\rules.cs" />
<Compile Include="AdvancedCommunication\TextCommandsHandler.cs" />
<Compile Include="BasicCommunication\AutoShutdown.cs" />
<Compile Include="BasicCommunication\ChangeMap.cs" />
<Compile Include="BasicCommunication\NewMinute.cs" />
<Compile Include="AdvancedCommunication\GTCommandHandler.cs" />
<Compile Include="TradeHandler.cs" />
<Compile Include="errorHandler.cs" />
<Compile Include="perks.cs" />
<Compile Include="Main.cs" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Logger.cs" />
<Compile Include="Settings.cs" />
<Compile Include="CLI.cs" />
<Compile Include="stats.cs" />
<Compile Include="Storage.cs" />
<Compile Include="TCPWrapper.cs" />
<Compile Include="BasicCommunication\HeartBeat.cs" />
<Compile Include="BasicCommunication\Ping.cs" />
<Compile Include="BasicCommunication\Login.cs" />
<Compile Include="BasicCommunication\RawText.cs" />
<Compile Include="Logging\CommandLogger.cs" />
<Compile Include="Logging\MessageLogger.cs" />
<Compile Include="BasicCommunication\MessageParser.cs" />
<Compile Include="Logging\LoginLogger.cs" />
<Compile Include="AdvancedCommunication\PMHandler.cs" />
<Compile Include="CommandCreator.cs" />
<Compile Include="AdvancedCommunication\HelpCommandHandler.cs" />
<Compile Include="AdvancedCommunication\SAYCommandHandler.cs" />
<Compile Include="AdvancedCommunication\AdminHelpCommandHandler.cs" />
<Compile Include="AdvancedCommunication\PMCommandHandler.cs" />
<Compile Include="AdvancedCommunication\BuddyHandler.cs" />
<Compile Include="MySqlManager.cs" />
<Compile Include="Inventory.cs" />
<Compile Include="AdvancedCommunication\AdvHelpCommandHandler.cs" />
<Compile Include="AdvancedCommunication\INVLISTCommandHandler.cs" />
<Compile Include="AdvancedCommunication\GiveCommandHandler.cs" />
<Compile Include="AdvancedCommunication\INVCommandHandler.cs" />
<Compile Include="AdvancedCommunication\BUYCommandHandler.cs" />
<Compile Include="AdvancedCommunication\WANTEDCommandHandler.cs" />
<Compile Include="AdvancedCommunication\LOCCommandHandler.cs" />
<Compile Include="TCPClient.cs" />
<Compile Include="AdvancedCommunication\ABOUTCommandHandler.cs" />
<Compile Include="AdvancedCommunication\DONATECommandHandler.cs" />
<Compile Include="AdvancedCommunication\DROPCommandHandler.cs" />
<Compile Include="AdvancedCommunication\PUTONSALECommandHandler.cs" />
<Compile Include="AdvancedCommunication\ACCEPTMECommandHandler.cs" />
<Compile Include="AdvancedCommunication\KICKMECommandHandler.cs" />
<Compile Include="AdvancedCommunication\GuildMembers.cs" />
<Compile Include="AdvancedCommunication\GreetPlayers.cs" />
<Compile Include="AdvancedCommunication\AdvertHandler.cs" />
<Compile Include="AdvancedCommunication\ActorHandler.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
</Project>