forked from microsoft/knack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
knack.pyproj
114 lines (114 loc) · 4.92 KB
/
knack.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{27802d2f-7f88-44e9-9818-c960569098a6}</ProjectGuid>
<ProjectHome />
<StartupFile>knack\__init__.py</StartupFile>
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<InterpreterId>MSBuild|env2|$(MSBuildProjectFullPath)</InterpreterId>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<PropertyGroup>
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="examples\exapp" />
<Content Include="examples\exapp2" />
<Content Include="examples\test_exapp" />
<Content Include="requirements.txt" />
<Content Include="tox.ini" />
</ItemGroup>
<ItemGroup>
<Compile Include="knack\arguments.py" />
<Compile Include="knack\cli.py" />
<Compile Include="knack\commands.py" />
<Compile Include="knack\completion.py" />
<Compile Include="knack\config.py" />
<Compile Include="knack\deprecation.py" />
<Compile Include="knack\events.py" />
<Compile Include="knack\help.py" />
<Compile Include="knack\help_files.py" />
<Compile Include="knack\introspection.py" />
<Compile Include="knack\invocation.py" />
<Compile Include="knack\log.py" />
<Compile Include="knack\output.py" />
<Compile Include="knack\parser.py" />
<Compile Include="knack\prompting.py" />
<Compile Include="knack\query.py" />
<Compile Include="knack\testsdk\base.py" />
<Compile Include="knack\testsdk\checkers.py" />
<Compile Include="knack\testsdk\const.py" />
<Compile Include="knack\testsdk\decorators.py" />
<Compile Include="knack\testsdk\exceptions.py" />
<Compile Include="knack\testsdk\patches.py" />
<Compile Include="knack\testsdk\recording_processors.py" />
<Compile Include="knack\testsdk\util.py" />
<Compile Include="knack\testsdk\__init__.py" />
<Compile Include="knack\util.py" />
<Compile Include="knack\__init__.py" />
<Compile Include="scripts\license_verify.py" />
<Compile Include="setup.py" />
<Compile Include="tests\test_cli_scenarios.py" />
<Compile Include="tests\test_command_registration.py" />
<Compile Include="tests\test_completion.py" />
<Compile Include="tests\test_config.py" />
<Compile Include="tests\test_deprecation.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tests\test_help.py" />
<Compile Include="tests\test_introspection.py" />
<Compile Include="tests\test_log.py" />
<Compile Include="tests\test_output.py" />
<Compile Include="tests\test_parser.py" />
<Compile Include="tests\test_prompting.py" />
<Compile Include="tests\test_query.py" />
<Compile Include="tests\test_util.py" />
<Compile Include="tests\util.py" />
<Compile Include="tests\__init__.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="examples\" />
<Folder Include="knack" />
<Folder Include="knack\testsdk" />
<Folder Include="scripts" />
<Folder Include="tests" />
</ItemGroup>
<ItemGroup>
<Interpreter Include="env2\">
<Id>env2</Id>
<Version>2.7</Version>
<Description>env2 (Python 2.7 (32-bit))</Description>
<InterpreterPath>Scripts\python.exe</InterpreterPath>
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
<Architecture>X86</Architecture>
</Interpreter>
<Interpreter Include="env2\">
<Id>{52196499-2eb9-4ba7-924a-ca67b294886b}</Id>
<Version>2.7</Version>
<Description>env2 (Python 2.7)</Description>
<InterpreterPath>Scripts\python.exe</InterpreterPath>
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
<LibraryPath>Lib\</LibraryPath>
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
<Architecture>X86</Architecture>
</Interpreter>
<Interpreter Include="env3\">
<Id>env3</Id>
<Version>3.6</Version>
<Description>env3 (Python 3.6 (64-bit))</Description>
<InterpreterPath>Scripts\python.exe</InterpreterPath>
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
<Architecture>X64</Architecture>
</Interpreter>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
</Project>