-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdjangoblogapp.pyproj
More file actions
78 lines (78 loc) · 3.46 KB
/
Copy pathdjangoblogapp.pyproj
File metadata and controls
78 lines (78 loc) · 3.46 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
<?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>{64d471be-4db5-4f79-ba4a-998127684a98}</ProjectGuid>
<ProjectHome />
<StartupFile>manage.py</StartupFile>
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<InterpreterId>MSBuild|env|$(MSBuildProjectFullPath)</InterpreterId>
<CommandLineArguments>runserver</CommandLineArguments>
<EnableNativeCodeDebugging>False</EnableNativeCodeDebugging>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<PropertyGroup>
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="blog\static\css\blog.css" />
<Content Include="blog\templates\blog\base.html" />
<Content Include="blog\templates\blog\post\detail.html" />
<Content Include="blog\templates\blog\post\latest_posts.html" />
<Content Include="blog\templates\blog\post\list.html" />
<Content Include="blog\templates\blog\post\share.html" />
<Content Include="blog\templates\pagination.html" />
<Content Include="requirements.txt" />
</ItemGroup>
<ItemGroup>
<Compile Include="blog\admin.py" />
<Compile Include="blog\feeds.py" />
<Compile Include="blog\forms.py" />
<Compile Include="blog\migrations\0001_initial.py" />
<Compile Include="blog\migrations\0002_comment.py" />
<Compile Include="blog\migrations\0003_post_tags.py" />
<Compile Include="blog\migrations\__init__.py" />
<Compile Include="blog\models.py" />
<Compile Include="blog\sitemaps.py" />
<Compile Include="blog\templatetags\blog_tags.py" />
<Compile Include="blog\templatetags\__init__.py" />
<Compile Include="blog\tests.py" />
<Compile Include="blog\urls.py" />
<Compile Include="blog\views.py" />
<Compile Include="blog\__init__.py" />
<Compile Include="manage.py" />
<Compile Include="mysite\settings.py" />
<Compile Include="mysite\urls.py" />
<Compile Include="mysite\wsgi.py" />
<Compile Include="mysite\__init__.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="blog" />
<Folder Include="blog\migrations" />
<Folder Include="blog\static\" />
<Folder Include="blog\static\css" />
<Folder Include="blog\templates" />
<Folder Include="blog\templates\blog" />
<Folder Include="blog\templates\blog\post" />
<Folder Include="blog\templatetags" />
<Folder Include="mysite" />
</ItemGroup>
<ItemGroup>
<Interpreter Include="env\">
<Id>env</Id>
<Version>3.6</Version>
<Description>env (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>