forked from alexmelyon/nanoboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnboard.csproj
106 lines (106 loc) · 4.86 KB
/
nboard.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{CF2752ED-0E02-4C17-8C83-151312787AD7}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>nboard</RootNamespace>
<AssemblyName>nboard</AssemblyName>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Drawing" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Strings.cs" />
<Compile Include="ApplicationStarter.cs" />
<Compile Include="Database\NanoDB.cs" />
<Compile Include="Server\NanoHttpRequest.cs" />
<Compile Include="Server\NanoHttpResponse.cs" />
<Compile Include="Server\NanoHttpServer.cs" />
<Compile Include="Server\NanoHttpServerBuilder.cs" />
<Compile Include="Png\PngMailer.cs" />
<Compile Include="Png\Aggregator.cs" />
<Compile Include="Png\DownloadCheckDaemon.cs" />
<Compile Include="Misc\FileUtils.cs" />
<Compile Include="Database\Hash.cs" />
<Compile Include="Database\HashCalculator.cs" />
<Compile Include="Database\NanoPostExtensions.cs" />
<Compile Include="Database\NanoPost.cs" />
<Compile Include="Misc\Logger.cs" />
<Compile Include="Server\StatusCode.cs" />
<Compile Include="Server\HtmlStringExtensions.cs" />
<Compile Include="Server\HttpConnection.cs" />
<Compile Include="Server\TcpServer.cs" />
<Compile Include="Server\Handlers\StubHandler.cs" />
<Compile Include="Server\Handlers\IRequestHandler.cs" />
<Compile Include="Server\Handlers\ErrorHandler.cs" />
<Compile Include="Server\Handlers\ThreadViewHandler.cs" />
<Compile Include="Server\Handlers\ReplyViewHandler.cs" />
<Compile Include="Server\Handlers\WriteHandler.cs" />
<Compile Include="Server\Handlers\HideHandler.cs" />
<Compile Include="Server\Handlers\ShutdownHandler.cs" />
<Compile Include="Server\Handlers\AggregateHandler.cs" />
<Compile Include="Server\Handlers\SaveHandler.cs" />
<Compile Include="Server\Handlers\AsmPngHandler.cs" />
<Compile Include="Server\Handlers\FreshPostsHandler.cs" />
<Compile Include="Server\Handlers\NotificationHandler.cs" />
<Compile Include="Server\Handlers\ImageBase64ConvertHandler.cs" />
<Compile Include="Server\Handlers\ConvertResultHandler.cs" />
<Compile Include="Misc\GZipUtil.cs" />
<Compile Include="Database\NanoPostPackUtil.cs" />
<Compile Include="Png\PngUtils.cs" />
<Compile Include="Png\PngStegoUtil.cs" />
<Compile Include="Misc\Salsa20.cs" />
<Compile Include="Misc\ByteEncryptionUtil.cs" />
<Compile Include="Server\Handlers\SetStyleHandler.cs" />
<Compile Include="Png\PngContainerCreatorNew.cs" />
<Compile Include="App.cs" />
<Compile Include="Png\PngContainerCreatorOld.cs" />
<Compile Include="Server\Handlers\HideAllHandler.cs" />
<Compile Include="Server\Handlers\RawPostHandler.cs" />
<Compile Include="Server\Handlers\ChildrenHandler.cs" />
<Compile Include="Server\Handlers\PostCountHandler.cs" />
<Compile Include="Server\Handlers\LastPostsHandler.cs" />
<Compile Include="Server\Handlers\GetPostHandler.cs" />
<Compile Include="Database\SpamDetector.cs" />
<Compile Include="Misc\ImageCompressor.cs" />
<Compile Include="Server\Handlers\CompressImageHandler.cs" />
<Compile Include="Server\Handlers\AddPlaceHandler.cs" />
<Compile Include="Server\Handlers\DelPlaceHandler.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="Server\" />
<Folder Include="Database\" />
<Folder Include="Png\" />
<Folder Include="Misc\" />
<Folder Include="Server\Handlers\" />
</ItemGroup>
</Project>