-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntegrationMinimal.pyproj
105 lines (105 loc) · 5.29 KB
/
IntegrationMinimal.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
<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>b3327319-c7b0-4888-abc5-b3656666e2bd</ProjectGuid>
<ProjectHome>.</ProjectHome>
<StartupFile>
</StartupFile>
<SearchPath>
</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<Name>IntegrationMinimal</Name>
<RootNamespace>IntegrationMinimal</RootNamespace>
<InterpreterId>MSBuild|env|$(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>
<ItemGroup>
<Compile Include="backend_interface.py" />
<Compile Include="backend_steam_network.py" />
<Compile Include="caches\__init__.py" />
<Compile Include="steam_network\socket_http_helper.py" />
<Compile Include="steam_network\steam_http_client.py" />
<Compile Include="steam_network\authentication_controller.py" />
<Compile Include="steam_network\authentication_model.py" />
<Compile Include="steam_network\authentication_view.py" />
<Compile Include="steam_network\network_websocket.py" />
<Compile Include="steam_network\protocol\consts.py" />
<Compile Include="steam_network\protocol\messages\encrypted_app_ticket_pb2.py" />
<Compile Include="steam_network\protocol\messages\enums_pb2.py" />
<Compile Include="steam_network\protocol\messages\service_cloudconfigstore_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_auth_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_base_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_chat_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_clientserver_2_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_clientserver_appinfo_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_clientserver_friends_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_clientserver_login_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_clientserver_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_clientserver_userstats_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_client_objects_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_player_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_unified_base_pb2.py" />
<Compile Include="steam_network\protocol\messages\steammessages_webui_friends_pb2.py" />
<Compile Include="steam_network\protocol\messages\__init__.py" />
<Compile Include="steam_network\protocol\protobuf_client.py" />
<Compile Include="steam_network\protocol\custom_types.py" />
<Compile Include="steam_network\protocol\__init__.py" />
<Compile Include="steam_network\__init__.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="web\" />
<Folder Include="web\css\" />
<Folder Include="web\fonts\" />
<Folder Include="web\fonts\LatoWeb\" />
<Folder Include="web\img\" />
<Folder Include="caches\" />
<Folder Include="steam_network\" />
<Folder Include="steam_network\protocol\" />
<Folder Include="steam_network\protocol\messages\" />
</ItemGroup>
<ItemGroup>
<Content Include=".gitignore" />
<Content Include="readme_for_developers.md" />
<Content Include="web\css\common.css" />
<Content Include="web\fonts\LatoWeb\LatoWeb-Light.ttf" />
<Content Include="web\fonts\LatoWeb\LatoWeb-Regular.ttf" />
<Content Include="web\fonts\LatoWeb\LatoWeb-Semibold.ttf" />
<Content Include="web\img\icon-error.svg" />
<Content Include="web\img\icon-show.svg" />
<Content Include="web\img\icon-steam-logo.svg" />
<Content Include="web\img\icon-warning.svg" />
<Content Include="program.py" />
<Content Include="README.md" />
<Content Include="requirements.txt" />
<Content Include="web\index.html" />
</ItemGroup>
<ItemGroup>
<Interpreter Include="env\">
<Id>env</Id>
<Version>3.11</Version>
<Description>env (Python 3.11 (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" />
<!-- 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>