-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ommel.csproj
126 lines (126 loc) · 6.3 KB
/
Ommel.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
<?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>{646DFBF4-7503-4258-AC7F-0684052D3458}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Ommel</RootNamespace>
<AssemblyName>Ommel</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</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' ">
<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="Irony">
<HintPath>libs\NetLua\packages\Irony.0.9.1-net40\lib\net40\Irony.dll</HintPath>
</Reference>
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="src\Ommel.cs" />
<Compile Include="src\Mod.cs" />
<Compile Include="src\WizardPak\Aes128CounterMode.cs" />
<Compile Include="src\WizardPak\NollaPrng.cs" />
<Compile Include="src\WizardPak\WakExtractor.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchArray.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchAssignable.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchAssignment.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchBinaryExpression.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchBlock.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchBoolLiteral.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchBreakStatement.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchElement.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchExpression.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchFunctionCall.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchFunctionDefinition.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchGenericFor.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchIfStatement.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchKeyValuePair.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchLocalAssignment.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchNilLiteral.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchNumberLiteral.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchNumericFor.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchRepeatStatement.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchReturnStatement.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchStatement.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchStringLiteral.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchTableAccess.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchTableConstructor.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchUnaryExpression.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchVarargsLiteral.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchVariable.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchVariableName.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchWhileStatement.cs" />
<Compile Include="src\XML\LuaSearch\LuaSearchXMLTypes.cs" />
<Compile Include="src\XML\ModMetadata.cs" />
<Compile Include="src\XML\OmmelMetadata.cs" />
<Compile Include="src\XML\NoitaConfig.cs" />
<Compile Include="src\XML\NoitaModConfig.cs" />
<Compile Include="src\Operations\BulkOperation.cs" />
<Compile Include="src\Operations\CopyOperation.cs" />
<Compile Include="src\Operations\FileOperation.cs" />
<Compile Include="src\Operations\LocalizeOperation.cs" />
<Compile Include="src\Operations\LuaEventOperation.cs" />
<Compile Include="src\Operations\LuaInsert\ASTSearchVisitor.cs" />
<Compile Include="src\Operations\LuaInsert\LuaInsertOperation.cs" />
<Compile Include="src\Operations\MessageOperation.cs" />
<Compile Include="src\Operations\OverwriteOperation.cs" />
<Compile Include="src\Operations\StubOperation.cs" />
<Compile Include="src\Operations\TextInsertOperation.cs" />
<Compile Include="src\Operations\XMLMerge\XMLMergeOperation.cs" />
<Compile Include="src\Operations\XMLMerge\XMLMerger.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="src\" />
<Folder Include="src\WizardPak\" />
<Folder Include="src\XML\" />
<Folder Include="src\Operations\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="libs\Logger\Logger.csproj">
<Project>{1C734127-AC83-4ECB-ABCA-32B98DFE49C7}</Project>
<Name>Logger</Name>
</ProjectReference>
<ProjectReference Include="libs\NetLua\NetLua\NetLua.csproj">
<Project>{6B52EB11-E6A7-4771-94B0-7F87EA28211D}</Project>
<Name>NetLua</Name>
</ProjectReference>
<ProjectReference Include="UpdateTool\UpdateTool.csproj">
<Project>{5BCB12EE-8E81-462A-83FE-6B5FDFBB0C09}</Project>
<Name>UpdateTool</Name>
</ProjectReference>
<ProjectReference Include="libs\html-agility-pack\src\HtmlAgilityPack.Net45\HtmlAgilityPack.Net45.csproj">
<Project>{8DCFDE1C-263F-41D4-B518-9B7EE06F7D52}</Project>
<Name>HtmlAgilityPack.Net45</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="res\ommelrt.lua">
<LogicalName>ommelrt.lua</LogicalName>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>