-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdumptrack.csproj
71 lines (71 loc) · 2.75 KB
/
dumptrack.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
<?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)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{2AFC828F-6999-4360-AC10-6C73B435B1B8}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>dumptrack</RootNamespace>
<AssemblyName>dumptrack</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</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>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="lib\" />
</ItemGroup>
<ItemGroup>
<None Include="lib\Newtonsoft.Json.dll" />
<None Include="offencelist.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="app.config" />
<None Include="github-blacklist.txt" />
<None Include="github-offences.txt" />
<None Include="lib\HtmlAgilityPack.dll" />
</ItemGroup>
<ItemGroup>
<Compile Include="StorageHelper.cs" />
<Compile Include="WebUtilities.cs" />
<Compile Include="Program.cs" />
<Compile Include="Config.cs" />
<Compile Include="modules\GitHubSearchModule.cs" />
<Compile Include="modules\GoogleCustomSearchModule.cs" />
<Compile Include="modules\IDumpTrackModule.cs" />
<Compile Include="Offence.cs" />
<Compile Include="DumpTrack.cs" />
<Compile Include="ModuleHelper.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json">
<HintPath>lib\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System.Net" />
<Reference Include="System.Web" />
<Reference Include="System.Net.Http" />
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="HtmlAgilityPack">
<HintPath>lib\HtmlAgilityPack.dll</HintPath>
</Reference>
</ItemGroup>
</Project>