-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathLineBot.pyproj
More file actions
94 lines (94 loc) · 3.23 KB
/
LineBot.pyproj
File metadata and controls
94 lines (94 loc) · 3.23 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
<?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>{0bb36a2f-d020-4a60-9e1b-191bcb75c539}</ProjectGuid>
<ProjectHome />
<StartupFile>app.py</StartupFile>
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<InterpreterId>Global|PythonCore|2.7</InterpreterId>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<PropertyGroup>
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="Procfile" />
<Content Include="requirements.txt" />
<Content Include="runtime.txt" />
<Content Include="static\style.css" />
<Content Include="templates\Base.html" />
<Content Include="templates\ErrorList.html" />
<Content Include="templates\WebPage.html" />
</ItemGroup>
<ItemGroup>
<Compile Include="app.py" />
<Compile Include="bot\game_object_holder.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="msg_handler\game_msg.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="bot\system.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="msg_handler\text_msg.py" />
<Compile Include="bot\webpage_auto_gen.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="bot\__init__.py" />
<Compile Include="db\groupban.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="db\kwdict.py" />
<Compile Include="db\msg_track.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="db\__init__.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="error.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="game\rps.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="game\__init__.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="msg_handler\__init__.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tool\mff.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tool\random_gen.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tool\txt_calc.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="tool\__init__.py">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<InterpreterReference Include="Global|PythonCore|2.7" />
</ItemGroup>
<ItemGroup>
<Folder Include="bot\" />
<Folder Include="db\" />
<Folder Include="game\" />
<Folder Include="msg_handler\" />
<Folder Include="templates\" />
<Folder Include="static\" />
<Folder Include="tool\" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
</Project>