-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemplateEngine.vcxproj.filters
More file actions
47 lines (47 loc) · 2.12 KB
/
TemplateEngine.vcxproj.filters
File metadata and controls
47 lines (47 loc) · 2.12 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ClCompile Include="src\main.cpp" />
<ClCompile Include="src\parser\variablesparser.cpp" />
<ClCompile Include="src\storage\variablesstorage.cpp" />
<ClCompile Include="src\parser\valuesparser.cpp" />
<ClCompile Include="src\storage\valuesstorage.cpp" />
<ClCompile Include="src\templateengine.cpp" />
<ClCompile Include="src\shared\stringhelper.cpp" />
<ClCompile Include="src\component\component.cpp" />
<ClCompile Include="src\component\staticcomponent.cpp" />
<ClCompile Include="src\component\variablecomponent.cpp" />
<ClCompile Include="src\component\nestedcomponent.cpp" />
<ClCompile Include="src\component\loopcomponent.cpp" />
<ClCompile Include="src\parser\templateparser.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\parser\variablesparser.h" />
<ClInclude Include="src\storage\variablesstorage.h" />
<ClInclude Include="src\parser\valuesparser.h" />
<ClInclude Include="src\storage\valuesstorage.h" />
<ClInclude Include="src\shared\variabletype.h" />
<ClInclude Include="src\shared\validationexception.h" />
<ClInclude Include="src\templateengine.h" />
<ClInclude Include="src\shared\stringhelper.h" />
<ClInclude Include="src\component\component.h" />
<ClInclude Include="src\component\staticcomponent.h" />
<ClInclude Include="src\component\variablecomponent.h" />
<ClInclude Include="src\component\nestedcomponent.h" />
<ClInclude Include="src\component\loopcomponent.h" />
<ClInclude Include="src\parser\templateparser.h" />
</ItemGroup>
<ItemGroup>
<None Include=".gitignore" />
<None Include=".gitattributes" />
<None Include="src\.editorconfig" />
</ItemGroup>
<ItemGroup>
<Text Include="data\data.txt" />
<Text Include="data\template.txt" />
<Text Include="data\data_spaced.txt" />
<Text Include="data\template_nested.txt" />
<Text Include="data\data_nested.txt" />
<Text Include="results\sample_result.txt" />
</ItemGroup>
</Project>