-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCortex.pyproj
More file actions
90 lines (90 loc) · 3.93 KB
/
Copy pathCortex.pyproj
File metadata and controls
90 lines (90 loc) · 3.93 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
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
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>27074d97-8d76-4f0f-91bf-af1af1df144d</ProjectGuid>
<ProjectHome>.</ProjectHome>
<StartupFile>main.py</StartupFile>
<SearchPath>backend</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<Name>Cortex</Name>
<RootNamespace>Cortex</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>false</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<ItemGroup>
<Compile Include="main.py" />
<Compile Include="Cortex_Preview.py" />
<Compile Include="backend\cortex_backend\**\*.py" />
<Compile Include="tests\**\*.py" />
</ItemGroup>
<ItemGroup>
<Content Include="assets\**\*" />
<Content Include="contracts\**\*" />
<Content Include="frontend\src\**\*" />
<Content Include="frontend\e2e\**\*" />
<Content Include="frontend\public\**\*" />
<Content Include="frontend\index.html" />
<Content Include="frontend\package.json" />
<Content Include="frontend\package-lock.json" />
<Content Include="frontend\tsconfig.json" />
<Content Include="frontend\vite.config.ts" />
<Content Include="packaging\**\*" />
<Content Include="README.md" />
<Content Include="requirements.txt" />
<Content Include="pyproject.toml" />
<Content Include="tools\generate_cortex_icons.cjs" />
</ItemGroup>
<ItemGroup>
<Folder Include="assets\" />
<Folder Include="backend\" />
<Folder Include="backend\cortex_backend\" />
<Folder Include="backend\cortex_backend\api\" />
<Folder Include="backend\cortex_backend\core\" />
<Folder Include="backend\cortex_backend\execution\" />
<Folder Include="backend\cortex_backend\launcher\" />
<Folder Include="backend\cortex_backend\llamacpp\" />
<Folder Include="backend\cortex_backend\repositories\" />
<Folder Include="backend\cortex_backend\services\" />
<Folder Include="backend\cortex_backend\testing\" />
<Folder Include="contracts\" />
<Folder Include="frontend\" />
<Folder Include="frontend\e2e\" />
<Folder Include="frontend\public\" />
<Folder Include="frontend\src\" />
<Folder Include="frontend\src\api\" />
<Folder Include="frontend\src\app\" />
<Folder Include="frontend\src\components\" />
<Folder Include="frontend\src\features\" />
<Folder Include="frontend\src\features\chat\" />
<Folder Include="frontend\src\features\command-palette\" />
<Folder Include="frontend\src\features\markdown\" />
<Folder Include="frontend\src\features\models\" />
<Folder Include="frontend\src\features\settings\" />
<Folder Include="frontend\src\features\shell\" />
<Folder Include="frontend\src\hooks\" />
<Folder Include="frontend\src\lib\" />
<Folder Include="frontend\src\shared\" />
<Folder Include="frontend\src\shared\ui\" />
<Folder Include="frontend\src\stores\" />
<Folder Include="frontend\src\styles\" />
<Folder Include="frontend\src\test\" />
<Folder Include="packaging\" />
<Folder Include="packaging\.runtime\" />
<Folder Include="packaging\.runtime\webview2\" />
<Folder Include="packaging\recipe_worker\" />
<Folder Include="packaging\recipe_worker\__pycache__\" />
<Folder Include="tests\" />
<Folder Include="tools\" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
<Target Name="BeforeBuild" />
<Target Name="AfterBuild" />
</Project>