1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
- <PropertyGroup>
- <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>e4f2e756-279e-417d-a445-15fc9a0310cb</ProjectGuid>
- <ProjectHome>.</ProjectHome>
- <ProjectTypeGuids>{789894c7-04a9-4a11-a6b5-3f4435165112};{1b580a1a-fdb3-4b32-83e1-6407eb2722e6};{349c5851-65df-11da-9384-00065b846f21};{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
- <StartupFile>app.py</StartupFile>
- <SearchPath>
- </SearchPath>
- <WorkingDirectory>.</WorkingDirectory>
- <LaunchProvider>Web launcher</LaunchProvider>
- <WebBrowserUrl>http://localhost</WebBrowserUrl>
- <OutputPath>.</OutputPath>
- <SuppressCollectPythonCloudServiceFiles>true</SuppressCollectPythonCloudServiceFiles>
- <Name>TriviaMVA</Name>
- <RootNamespace>TriviaMVA</RootNamespace>
- <InterpreterId>MSBuild|venv|$(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="app.py" />
- <Compile Include="routes.py">
- <SubType>Code</SubType>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <Content Include="requirements.txt" />
- <Content Include="templates\AnswerQuestion.html" />
- <Content Include="templates\CreateQuestion.html" />
- <Content Include="templates\QCorrectPage.html" />
- <Content Include="templates\QWrongPage.html" />
- <Content Include="templates\SubmitedPage.html" />
- <Content Include="templates\TriviaIndex.html" />
- </ItemGroup>
- <ItemGroup>
- <Interpreter Include="venv\">
- <Id>venv</Id>
- <Version>3.7</Version>
- <Description>venv (Python 3.7 (64-bit))</Description>
- <InterpreterPath>Scripts\python.exe</InterpreterPath>
- <WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
- <PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
- <Architecture>X64</Architecture>
- </Interpreter>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="templates\" />
- </ItemGroup>
- <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.Web.targets" />
- <!-- Specify pre- and post-build commands in the BeforeBuild and
- AfterBuild targets below. -->
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- <ProjectExtensions>
- <VisualStudio>
- <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
- <WebProjectProperties>
- <AutoAssignPort>True</AutoAssignPort>
- <UseCustomServer>True</UseCustomServer>
- <CustomServerUrl>http://localhost</CustomServerUrl>
- <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
- </WebProjectProperties>
- </FlavorProperties>
- <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}" User="">
- <WebProjectProperties>
- <StartPageUrl>
- </StartPageUrl>
- <StartAction>CurrentPage</StartAction>
- <AspNetDebugging>True</AspNetDebugging>
- <SilverlightDebugging>False</SilverlightDebugging>
- <NativeDebugging>False</NativeDebugging>
- <SQLDebugging>False</SQLDebugging>
- <ExternalProgram>
- </ExternalProgram>
- <StartExternalURL>
- </StartExternalURL>
- <StartCmdLineArguments>
- </StartCmdLineArguments>
- <StartWorkingDirectory>
- </StartWorkingDirectory>
- <EnableENC>False</EnableENC>
- <AlwaysStartWebServerOnDebug>False</AlwaysStartWebServerOnDebug>
- </WebProjectProperties>
- </FlavorProperties>
- </VisualStudio>
- </ProjectExtensions>
- </Project>
|