-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTreasureMap.csproj
129 lines (129 loc) · 6.49 KB
/
TreasureMap.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
123
124
125
126
127
128
129
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5B64F5DF-49EE-4A2F-A10B-0CC9B54E5B6E}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>TreasureMap</RootNamespace>
<AssemblyName>TreasureMap</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="JetBrains.Annotations, Version=11.1.0.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325, processorArchitecture=MSIL">
<HintPath>packages\JetBrains.Annotations.11.1.0\lib\net20\JetBrains.Annotations.dll</HintPath>
</Reference>
<Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Threading.Tasks.Dataflow, Version=4.5.24.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>packages\Microsoft.Tpl.Dataflow.4.5.24\lib\portable-net45+win8+wpa81\System.Threading.Tasks.Dataflow.dll</HintPath>
<Private>True</Private>
</Reference>
<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" />
<Reference Include="vtortola.WebSockets, Version=2.2.4.0, Culture=neutral, PublicKeyToken=7f78616efb4a208d, processorArchitecture=MSIL">
<HintPath>packages\vtortola.WebSocketListener.2.2.4.0\lib\net45\vtortola.WebSockets.dll</HintPath>
</Reference>
<Reference Include="vtortola.WebSockets.Deflate, Version=2.2.4.0, Culture=neutral, PublicKeyToken=7f78616efb4a208d, processorArchitecture=MSIL">
<HintPath>packages\vtortola.WebSocketListener.2.2.4.0\lib\net45\vtortola.WebSockets.Deflate.dll</HintPath>
</Reference>
<Reference Include="vtortola.WebSockets.Rfc6455, Version=2.2.4.0, Culture=neutral, PublicKeyToken=7f78616efb4a208d, processorArchitecture=MSIL">
<HintPath>packages\vtortola.WebSocketListener.2.2.4.0\lib\net45\vtortola.WebSockets.Rfc6455.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Crypto\RHHE.cs" />
<Compile Include="Crypto\HMAC_RHHE.cs" />
<Compile Include="Db\CredentialsHolder.cs" />
<Compile Include="Db\Helpers\DataLoader.cs" />
<Compile Include="Db\Helpers\PeriodicSaver.cs" />
<Compile Include="Db\Models\Point.cs" />
<Compile Include="Db\Models\User.cs" />
<Compile Include="Db\PointHolder.cs" />
<Compile Include="Db\SecretHolder.cs" />
<Compile Include="Handlers\AddPointHandler.cs" />
<Compile Include="PathFinders\FastPathFinder.cs" />
<Compile Include="Handlers\GetAllPublicsHandler.cs" />
<Compile Include="Handlers\GetPointsHandler.cs" />
<Compile Include="Handlers\Helpers\BaseHandler.cs" />
<Compile Include="Handlers\Helpers\CredentialsHandlerHelper.cs" />
<Compile Include="Handlers\Helpers\PointConverter.cs" />
<Compile Include="PathFinders\IPathFinder.cs" />
<Compile Include="Handlers\LoginHandler.cs" />
<Compile Include="Handlers\Models\DrawPoint.cs" />
<Compile Include="Handlers\Models\PathRequest.cs" />
<Compile Include="Handlers\Models\Point.cs" />
<Compile Include="Handlers\Helpers\NeedAuthorizeHandler.cs" />
<Compile Include="Handlers\PathDrawer.cs" />
<Compile Include="PathFinders\HeuristicPathFinder.cs" />
<Compile Include="PathFinders\PathFinder.cs" />
<Compile Include="Handlers\Helpers\SecureCookieHelper.cs" />
<Compile Include="Handlers\ShortestPathHandler.cs" />
<Compile Include="Http\HttpContextHelper.cs" />
<Compile Include="Http\HttpServer.cs" />
<Compile Include="Http\HttpServerExtentions.cs" />
<Compile Include="Http\HttpServerSettings.cs" />
<Compile Include="Http\ResponseAsyncHelper.cs" />
<Compile Include="Handlers\Models\Credentials.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utils\AsyncLockSource.cs" />
<Compile Include="Utils\CollectionUtils.cs" />
<Compile Include="Utils\EnumerableExtentions.cs" />
<Compile Include="Utils\JsonHelper.cs" />
<Compile Include="Utils\ReflectionUtils.cs" />
<Compile Include="Utils\RuntimeHelper.cs" />
<Compile Include="Utils\SimpleSettings.cs" />
<Compile Include="Utils\StringUtils.cs" />
<Compile Include="Utils\TaskUtils.cs" />
<Compile Include="Ws\WsServer.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
<None Include="settings">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>