-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBarCrawlrServer.pyproj
More file actions
109 lines (109 loc) · 4.56 KB
/
BarCrawlrServer.pyproj
File metadata and controls
109 lines (109 loc) · 4.56 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?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>fafa080b-7baa-4494-a7f3-d8ef9f2cda4a</ProjectGuid>
<ProjectHome>.</ProjectHome>
<StartupFile>app.py</StartupFile>
<SearchPath>
</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<Name>BarCrawlrServer</Name>
<RootNamespace>BarCrawlrServer</RootNamespace>
<InterpreterId>{2af0f10d-7135-4994-9156-5d01c9c11b7e}</InterpreterId>
<InterpreterVersion>3.5</InterpreterVersion>
</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="BarCrawlrServerTest\thread\cullingTest.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServerTest\utilities\loggerTest.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServerTest\model\placeTest.py" />
<Compile Include="BarCrawlrServerTest\model\planTest.py" />
<Compile Include="BarCrawlrServerTest\model\userTest.py" />
<Compile Include="BarCrawlrServerTest\bcserverTest.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="app.py" />
<Compile Include="BarCrawlrServerTest\utilities\barJsonsTest.py" />
<Compile Include="BarCrawlrServerTest\utilities\parserTest.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\model\event.py" />
<Compile Include="BarCrawlrServer\model\place.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\model\plan.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\model\user.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\model\__init__.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\thread\__init__.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\utilities\barJsons.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\utilities\codeMaker.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\thread\culler.py" />
<Compile Include="BarCrawlrServer\utilities\logger.py" />
<Compile Include="BarCrawlrServer\utilities\__init__.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\__init__.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="BarCrawlrServer\bcserver.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="BarCrawlrServerTest\model\" />
<Folder Include="BarCrawlrServerTest\thread\" />
<Folder Include="BarCrawlrServerTest\utilities\" />
<Folder Include="BarCrawlrServer\" />
<Folder Include="BarCrawlrServer\model\" />
<Folder Include="BarCrawlrServer\thread\" />
<Folder Include="settings\" />
<Folder Include="BarCrawlrServer\utilities\" />
<Folder Include="BarCrawlrServerTest\" />
</ItemGroup>
<ItemGroup>
<InterpreterReference Include="{2af0f10d-7135-4994-9156-5d01c9c11b7e}\3.5" />
</ItemGroup>
<ItemGroup>
<Content Include="settings\settings.json">
<SubType>Code</SubType>
</Content>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<PtvsTargetsFile>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets</PtvsTargetsFile>
</PropertyGroup>
<Import Condition="Exists($(PtvsTargetsFile))" Project="$(PtvsTargetsFile)" />
<Import Condition="!Exists($(PtvsTargetsFile))" Project="$(MSBuildToolsPath)\Microsoft.Common.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>