-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQL_CLI_Tools.pyproj
More file actions
94 lines (94 loc) · 4.06 KB
/
SQL_CLI_Tools.pyproj
File metadata and controls
94 lines (94 loc) · 4.06 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
91
92
93
94
<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>87056297-41f6-450a-ada2-c4ef0f540a43</ProjectGuid>
<ProjectHome>
</ProjectHome>
<StartupFile>app.py</StartupFile>
<SearchPath>
</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<Name>SQL_CLI_Tools</Name>
<RootNamespace>SQLCommenter</RootNamespace>
<SuppressEnvironmentCreationPrompt>True</SuppressEnvironmentCreationPrompt>
<TestFramework>Pytest</TestFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<ItemGroup>
<Compile Include="app.py" />
<Compile Include="core\base_ai_client.py" />
<Content Include="cli\sample_cli_commands.md" />
<Content Include="sql_cli_usage_guide.md" />
<Content Include="core\config_loader.py" />
<Compile Include="core\logger.py" />
<Compile Include="core\sql_task_base.py" />
<Compile Include="learn\sql_learn_mode.py" />
<Compile Include="learn\__init__.py" />
<Compile Include="utils\dynamic_sql_detector.py" />
<Compile Include="tasks\natural_language_to_sql.py" />
<Compile Include="tasks\sql_data_masker.py" />
<Compile Include="tasks\sql_explainer.py" />
<Compile Include="tasks\sql_performance_benchmark.py" />
<Compile Include="tasks\sql_query_simulator_validator.py" />
<Compile Include="tasks\sql_query_validator.py" />
<Compile Include="tasks\sql_refactorer.py" />
<Compile Include="tasks\sql_security_auditor.py" />
<Compile Include="tasks\sql_style_enforcer.py" />
<Compile Include="tasks\sql_test_generator.py" />
<Compile Include="tests\test_natural_language_to_sql.py" />
<Compile Include="tests\test_sql_data_masker.py" />
<Compile Include="tests\test_sql_performance_benchmark.py" />
<Compile Include="tests\test_sql_query_validator.py" />
<Compile Include="tests\test_sql_security_auditor.py" />
<Compile Include="tests\test_sql_style_enforcer.py" />
<Compile Include="utils\file_utils.py" />
<Compile Include="utils\prompt_manager.py" />
<Compile Include="utils\sanitizer.py" />
<Compile Include="tasks\sql_analyzer.py" />
<Compile Include="tasks\sql_commenter.py" />
<Content Include="sql\sp_GenerateSchemaJSON.sql" />
<Content Include="sql\using_sp_GenerateSchemaJSON_and_nl_to_sql.md" />
<Content Include="use_cases_and_review.md" />
</ItemGroup>
<ItemGroup>
<Content Include="GenAI SQL CLI Doc.docx" />
<Content Include="LICENSE" />
<Content Include="prompts\index.yaml" />
<Content Include="README.md" />
<Content Include="schema\aw2019.json" />
<Content Include="schema\HealthClaimsDemo.json" />
<Content Include="schema\HealthClaimsDW.json" />
</ItemGroup>
<ItemGroup>
<Folder Include="core\" />
<Folder Include="logs\" />
<Folder Include="learn\" />
<Folder Include="cli\" />
<Folder Include="custom_outputs\" />
<Folder Include="sql\" />
<Folder Include="output\" />
<Folder Include="schema\" />
<Folder Include="tests\" />
<Folder Include="prompts\" />
<Folder Include="utils\" />
<Folder Include="tasks\" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
<!-- Uncomment the CoreCompile target to enable the Build command in
Visual Studio and specify your pre- and post-build commands in
the BeforeBuild and AfterBuild targets below. -->
<!--<Target Name="CoreCompile" />-->
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
</Project>