Skip to content

Commit acf9b0e

Browse files
committed
Added Visual Studio project
1 parent cc33638 commit acf9b0e

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,6 @@ venv.bak/
109109

110110
*.iml
111111
.idea
112+
113+
# Visual Studio
114+
.vs

client-encryption-python.pyproj

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<SchemaVersion>2.0</SchemaVersion>
6+
<ProjectGuid>{43298c1a-86ab-4d9d-87fa-f969332c5ef8}</ProjectGuid>
7+
<ProjectHome />
8+
<StartupFile>setup.py</StartupFile>
9+
<SearchPath />
10+
<WorkingDirectory>.</WorkingDirectory>
11+
<OutputPath>.</OutputPath>
12+
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
13+
<LaunchProvider>Standard Python launcher</LaunchProvider>
14+
<InterpreterId>Global|PythonCore|3.7-32</InterpreterId>
15+
</PropertyGroup>
16+
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
17+
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
18+
<PropertyGroup>
19+
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
20+
</PropertyGroup>
21+
<ItemGroup>
22+
<Content Include="requirements.txt" />
23+
</ItemGroup>
24+
<ItemGroup>
25+
<Compile Include="client_encryption\api_encryption.py" />
26+
<Compile Include="client_encryption\encoding_utils.py" />
27+
<Compile Include="client_encryption\encryption_exception.py" />
28+
<Compile Include="client_encryption\encryption_utils.py" />
29+
<Compile Include="client_encryption\field_level_encryption.py" />
30+
<Compile Include="client_encryption\field_level_encryption_config.py" />
31+
<Compile Include="client_encryption\json_path_utils.py" />
32+
<Compile Include="client_encryption\session_key_params.py" />
33+
<Compile Include="client_encryption\version.py" />
34+
<Compile Include="client_encryption\__init__.py" />
35+
<Compile Include="setup.py" />
36+
<Compile Include="tests\test_api_encryption.py" />
37+
<Compile Include="tests\test_encoding_utils.py" />
38+
<Compile Include="tests\test_encryption_utils.py" />
39+
<Compile Include="tests\test_field_level_encryption.py" />
40+
<Compile Include="tests\test_field_level_encryption_config.py" />
41+
<Compile Include="tests\test_json_path_utils.py" />
42+
<Compile Include="tests\test_session_key_params.py" />
43+
<Compile Include="tests\utils\api_encryption_test_utils.py" />
44+
<Compile Include="tests\__init__.py" />
45+
</ItemGroup>
46+
<ItemGroup>
47+
<Folder Include="client_encryption" />
48+
<Folder Include="tests" />
49+
<Folder Include="tests\utils" />
50+
</ItemGroup>
51+
<ItemGroup>
52+
<InterpreterReference Include="Global|PythonCore|3.7-32" />
53+
</ItemGroup>
54+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
55+
</Project>

client-encryption-python.sln

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29102.190
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "client-encryption-python", "client-encryption-python.pyproj", "{43298C1A-86AB-4D9D-87FA-F969332C5EF8}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{43298C1A-86AB-4D9D-87FA-F969332C5EF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{43298C1A-86AB-4D9D-87FA-F969332C5EF8}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
GlobalSection(ExtensibilityGlobals) = postSolution
21+
SolutionGuid = {EFFA9930-7863-48D0-A151-C279697FE663}
22+
EndGlobalSection
23+
EndGlobal

0 commit comments

Comments
 (0)