-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNeoDoc.csproj
115 lines (115 loc) · 5.43 KB
/
NeoDoc.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
<?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>
<ProjectGuid>{819C0ABB-136E-42DB-B183-B5FC22A8DBEB}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>NeoDoc</RootNamespace>
<AssemblyName>NeoDoc</AssemblyName>
<TargetFrameworkVersion>v4.7.2</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>
<ExternalConsole>true</ExternalConsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|anycpu' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ExternalConsole>true</ExternalConsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug TTT2|AnyCPU' ">
<Optimize>false</Optimize>
<OutputPath>bin\Debug TTT2</OutputPath>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Newtonsoft.Json">
<HintPath>packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.ComponentModel" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Configuration" />
<Reference Include="System.Configuration.Install" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Drawing.Design" />
<Reference Include="System.Management" />
<Reference Include="System.Transactions" />
<Reference Include="System.Xml" />
<Reference Include="CommandLine">
<HintPath>packages\CommandLineParser.2.8.0\lib\net45\CommandLine.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="source\Langs\Lua.cs" />
<Compile Include="source\Langs\Lang.cs" />
<Compile Include="source\LangMatcher.cs" />
<Compile Include="source\ParamMatcher.cs" />
<Compile Include="source\FileParser.cs" />
<Compile Include="source\Params\IgnoreParam.cs" />
<Compile Include="source\DataStructures\DataStructure.cs" />
<Compile Include="source\DataStructures\Lua\Function.cs" />
<Compile Include="source\Params\WrapperParam.cs" />
<Compile Include="source\Params\Wrapper\ModuleParam.cs" />
<Compile Include="source\Params\Wrapper\ClassParam.cs" />
<Compile Include="source\Params\SectionParam.cs" />
<Compile Include="source\DataStructures\Lua\CreateConVar.cs" />
<Compile Include="source\DataStructures\Lua\Hook.cs" />
<Compile Include="source\Params\HookParam.cs" />
<Compile Include="source\Params\RealmParam.cs" />
<Compile Include="source\Params\NoteParam.cs" />
<Compile Include="source\Params\ReturnParam.cs" />
<Compile Include="source\Params\LocalParam.cs" />
<Compile Include="source\Params\InternalParam.cs" />
<Compile Include="source\Params\WarningParam.cs" />
<Compile Include="source\Params\3DParam.cs" />
<Compile Include="source\Params\2DParam.cs" />
<Compile Include="source\Params\TodoParam.cs" />
<Compile Include="source\Params\DeprecatedParam.cs" />
<Compile Include="source\Params\UsageParam.cs" />
<Compile Include="source\Params\SeeParam.cs" />
<Compile Include="source\Params\RefParam.cs" />
<Compile Include="source\Params\ImportantParam.cs" />
<Compile Include="source\Params\BaseParams\Param.cs" />
<Compile Include="source\Params\BaseParams\MarkParam.cs" />
<Compile Include="source\Params\BaseParams\ParameterParam.cs" />
<Compile Include="source\Params\BaseParams\TextParam.cs" />
<Compile Include="source\Params\ParamParam.cs" />
<Compile Include="source\Params\BaseParams\StateParam.cs" />
<Compile Include="source\Params\NameParam.cs" />
<Compile Include="source\Params\DescParam.cs" />
<Compile Include="source\Params\PredictedParam.cs" />
<Compile Include="source\Params\FunctionParam.cs" />
<Compile Include="source\Params\AuthorParam.cs" />
<Compile Include="source\Params\BaseParams\TypeTextParam.cs" />
<Compile Include="source\Params\AccessorParam.cs" />
<Compile Include="source\DataStructures\Lua\Accessor.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="source\" />
<Folder Include="source\Langs\" />
<Folder Include="source\Params\" />
<Folder Include="source\DataStructures\" />
<Folder Include="source\DataStructures\Lua\" />
<Folder Include="source\Params\Wrapper\" />
<Folder Include="source\Params\BaseParams\" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include=".gitignore" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>