Project with the goal of creating a backend server with an API for interacting with archived YouTube videos and metadata.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
3.9 KiB

  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  2. <PropertyGroup>
  3. <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
  4. <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  5. <Name>YTMirror</Name>
  6. <RootNamespace>YTMirror</RootNamespace>
  7. <LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
  8. <SaveNodeJsSettingsInProjectFile>True</SaveNodeJsSettingsInProjectFile>
  9. </PropertyGroup>
  10. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  11. <PropertyGroup>
  12. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  13. <SchemaVersion>2.0</SchemaVersion>
  14. <ProjectGuid>3adca4cb-3634-40cd-a0cc-712b7d911184</ProjectGuid>
  15. <ProjectHome>.</ProjectHome>
  16. <StartupFile>server.js</StartupFile>
  17. <SearchPath>
  18. </SearchPath>
  19. <WorkingDirectory>.</WorkingDirectory>
  20. <OutputPath>.</OutputPath>
  21. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  22. <ProjectTypeGuids>{3AF33F2E-1136-4D97-BBB7-1795711AC8B8};{349c5851-65df-11da-9384-00065b846f21};{9092AA53-FB77-4645-B42D-1CCCA6BD08BD}</ProjectTypeGuids>
  23. <NodejsPort>62988</NodejsPort>
  24. <StartWebBrowser>False</StartWebBrowser>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  27. <DebugSymbols>true</DebugSymbols>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  30. <DebugSymbols>true</DebugSymbols>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Compile Include="api\metadata.js">
  34. <SubType>Code</SubType>
  35. </Compile>
  36. <Compile Include="server.js" />
  37. <Content Include="package.json" />
  38. <Content Include="README.md" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Folder Include="api\" />
  42. </ItemGroup>
  43. <!-- Do not delete the following Import Project. While this appears to do nothing it is a marker for setting TypeScript properties before our import that depends on them. -->
  44. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" Condition="False" />
  45. <Import Project="$(VSToolsPath)\Node.js Tools\Microsoft.NodejsTools.targets" />
  46. <ProjectExtensions>
  47. <VisualStudio>
  48. <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
  49. <WebProjectProperties>
  50. <UseIIS>False</UseIIS>
  51. <AutoAssignPort>True</AutoAssignPort>
  52. <DevelopmentServerPort>0</DevelopmentServerPort>
  53. <DevelopmentServerVPath>/</DevelopmentServerVPath>
  54. <IISUrl>http://localhost:48022/</IISUrl>
  55. <NTLMAuthentication>False</NTLMAuthentication>
  56. <UseCustomServer>True</UseCustomServer>
  57. <CustomServerUrl>http://localhost:1337</CustomServerUrl>
  58. <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
  59. </WebProjectProperties>
  60. </FlavorProperties>
  61. <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}" User="">
  62. <WebProjectProperties>
  63. <StartPageUrl>
  64. </StartPageUrl>
  65. <StartAction>CurrentPage</StartAction>
  66. <AspNetDebugging>True</AspNetDebugging>
  67. <SilverlightDebugging>False</SilverlightDebugging>
  68. <NativeDebugging>False</NativeDebugging>
  69. <SQLDebugging>False</SQLDebugging>
  70. <ExternalProgram>
  71. </ExternalProgram>
  72. <StartExternalURL>
  73. </StartExternalURL>
  74. <StartCmdLineArguments>
  75. </StartCmdLineArguments>
  76. <StartWorkingDirectory>
  77. </StartWorkingDirectory>
  78. <EnableENC>False</EnableENC>
  79. <AlwaysStartWebServerOnDebug>False</AlwaysStartWebServerOnDebug>
  80. </WebProjectProperties>
  81. </FlavorProperties>
  82. </VisualStudio>
  83. </ProjectExtensions>
  84. </Project>