-
Notifications
You must be signed in to change notification settings - Fork 0
/
MineLib.Core.csproj
119 lines (119 loc) · 6.64 KB
/
MineLib.Core.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.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>
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C6BE1779-61E7-4C62-989A-9FA62ACB2C78}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MineLib.Core</RootNamespace>
<AssemblyName>MineLib.Core</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Profile111</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">.\</SolutionDir>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<UseVSHostingProcess>true</UseVSHostingProcess>
</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>
<Compile Include="Client\ProtocolPurpose.cs" />
<Compile Include="Data\BlockPosition.cs" />
<Compile Include="Events\ReceiveEvents\DisconnectEvent.cs" />
<Compile Include="Events\ReceiveEvents\GameInfoEvent.cs" />
<Compile Include="Events\ReceiveEvents\PlayerIDEvent.cs" />
<Compile Include="Events\ReceiveEvents\UpdateFoodEvent.cs" />
<Compile Include="Events\SendingEvents\ConnectToServerEvent.cs" />
<Compile Include="Events\SendingEvents\KeepAliveEvent.cs" />
<Compile Include="Events\SendingEvents\PlayerHeldItemEvent.cs" />
<Compile Include="Events\SendingEvents\PlayerMovedEvent.cs" />
<Compile Include="Events\SendingEvents\PlayerSetRemoveBlockEvent.cs" />
<Compile Include="Events\SendingEvents\RespawnEvent.cs" />
<Compile Include="Events\SendingEvents\SendClientInfoEvent.cs" />
<Compile Include="Events\SendingEvents\SendMessageEvent.cs" />
<Compile Include="Exceptions\NetworkHandlerException.cs" />
<Compile Include="Exceptions\MineLibClientException.cs" />
<Compile Include="Exceptions\ProtocolException.cs" />
<Compile Include="Extensions\PacketExtensions.cs" />
<Compile Include="Events\ReceiveEvents\Anvil\BlockActionEvent.cs" />
<Compile Include="Events\ReceiveEvents\Anvil\BlockBreakActionEvent.cs" />
<Compile Include="Events\ReceiveEvents\Anvil\BlockChangeEvent.cs" />
<Compile Include="Events\ReceiveEvents\Anvil\ChunkEvent.cs" />
<Compile Include="Events\ReceiveEvents\Anvil\ChunkArrayEvent.cs" />
<Compile Include="Events\ReceiveEvents\Anvil\MultiBlockChangeEvent.cs" />
<Compile Include="Events\ReceiveEvents\ActionEvent.cs" />
<Compile Include="Events\ReceiveEvents\ChatMessageEvent.cs" />
<Compile Include="Events\ReceiveEvents\HeldItemChangeEvent.cs" />
<Compile Include="Events\ReceiveEvents\PlayerLookEvent.cs" />
<Compile Include="Events\ReceiveEvents\PlayerPositionEvent.cs" />
<Compile Include="Events\ReceiveEvents\RespawnEvent.cs" />
<Compile Include="Events\ReceiveEvents\SetExperienceEvent.cs" />
<Compile Include="Events\ReceiveEvents\SpawnPointEvent.cs" />
<Compile Include="Events\ReceiveEvents\TimeUpdateEvent.cs" />
<Compile Include="Events\ReceiveEvents\UpdateHealthEvent.cs" />
<Compile Include="IModAPIContext.cs" />
<Compile Include="Client\IStatusClient.cs" />
<Compile Include="Client\IServerInfo.cs" />
<Compile Include="Client\ClientState.cs" />
<Compile Include="Data\Anvil\Block.cs" />
<Compile Include="Data\Anvil\Chunk.cs" />
<Compile Include="Data\Anvil\Section.cs" />
<Compile Include="Data\Coordinates2D.cs" />
<Compile Include="Data\EntityMetadataEntry.cs" />
<Compile Include="Data\Position.cs" />
<Compile Include="Data\Rotation.cs" />
<Compile Include="Data\Size.cs" />
<Compile Include="Data\ItemStack.cs" />
<Compile Include="Data\Structs\PlaverMovedData.cs" />
<Compile Include="Data\Structs\PlayerSetRemoveBlockData.cs" />
<Compile Include="Extensions\Helper.cs" />
<Compile Include="Events\ReceiveEvent.cs" />
<Compile Include="Events\SendingEvent.cs" />
<Compile Include="Client\MineLibClient.cs" />
<Compile Include="ModAPI.cs" />
<Compile Include="Client\ProtocolHandler.cs" />
<Compile Include="Client\Protocol.cs" />
<Compile Include="Loader\AssemblyParser.cs" />
<Compile Include="Loader\AssemblyInfo.cs" />
<Compile Include="Client\ModularProtocolHandler.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Data\Anvil\World.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="PCLStorage, Version=1.0.2.0, Culture=neutral, PublicKeyToken=286fe515a2c35b64, processorArchitecture=MSIL">
<HintPath>$(SolutionDir)\packages\PCLStorage.1.0.2\lib\portable-net45+wp8+wpa81+win8+monoandroid+monotouch+Xamarin.iOS+Xamarin.Mac\PCLStorage.dll</HintPath>
</Reference>
<Reference Include="PCLStorage.Abstractions, Version=1.0.2.0, Culture=neutral, PublicKeyToken=286fe515a2c35b64, processorArchitecture=MSIL">
<HintPath>$(SolutionDir)\packages\PCLStorage.1.0.2\lib\portable-net45+wp8+wpa81+win8+monoandroid+monotouch+Xamarin.iOS+Xamarin.Mac\PCLStorage.Abstractions.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(SolutionDir)\Aragas.Core\Aragas.Core.csproj">
<Project>{468d9d51-dfe7-47a8-b0d6-52d035fc714d}</Project>
<Name>Aragas.Core</Name>
</ProjectReference>
<ProjectReference Include="fNbt\fNbt\fNbt.Portable.csproj">
<Project>{22ac9f07-35ca-4e0e-b3b8-4a8e719df529}</Project>
<Name>fNbt.Portable</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
</Project>