-
Notifications
You must be signed in to change notification settings - Fork 21
/
enforce.pyproj
127 lines (127 loc) · 4.61 KB
/
enforce.pyproj
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
127
<?xml version="1.0" encoding="utf-8"?>
<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>abd0a35c-137d-4a14-83d2-ba8d1d1c7608</ProjectGuid>
<ProjectHome>.</ProjectHome>
<StartupFile>setup.py</StartupFile>
<SearchPath>
</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<Name>enforce</Name>
<RootNamespace>enforce</RootNamespace>
<InterpreterId>MSBuild|{38eb0386-7493-4ddb-b0c7-ef15ceb861a1}|$(MSBuildProjectFullPath)</InterpreterId>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="enforce\decorators.py" />
<Compile Include="enforce\enforcers.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="enforce\exceptions.py" />
<Compile Include="enforce\nodes.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="enforce\parsers.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="enforce\settings.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="enforce\validator.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="enforce\types.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="enforce\utils.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="enforce\wrappers.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="enforce\__init__.py" />
<Compile Include="setup.py" />
<Compile Include="tests\test_decorators.py" />
<Compile Include="tests\test_enforce.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tests\test_enforcers.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tests\test_exceptions.py" />
<Compile Include="tests\test_nodes.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tests\test_parsers.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tests\test_settings.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tests\test_validator.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tests\test_types.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tests\test_utils.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tests\test_wrappers.py">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Folder Include="enforce\" />
<Folder Include="tests\" />
</ItemGroup>
<ItemGroup>
<Content Include=".travis.yml" />
<Content Include="appveyor.yml" />
<Content Include="README.md" />
<Content Include="requirements.txt" />
</ItemGroup>
<ItemGroup>
<Interpreter Include="env1\">
<Id>env1</Id>
<Version>3.6</Version>
<Description>env1 (Python 3.6 (64-bit))</Description>
<InterpreterPath>Scripts\python.exe</InterpreterPath>
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
<Architecture>X64</Architecture>
</Interpreter>
<Interpreter Include="env\">
<Id>{38eb0386-7493-4ddb-b0c7-ef15ceb861a1}</Id>
<Version>3.5</Version>
<Description>env (Python 64-bit 3.5)</Description>
<InterpreterPath>Scripts\python.exe</InterpreterPath>
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
<LibraryPath>Lib\</LibraryPath>
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
<Architecture>Amd64</Architecture>
</Interpreter>
</ItemGroup>
<!-- 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>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
</Project>