FormulaOneApp.ErgastAPI.csproj 5.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{87994CF7-24C7-47FC-9F41-28F63966F60E}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>FormulaOneApp.ErgastAPI</RootNamespace>
  12. <AssemblyName>FormulaOneApp.ErgastAPI</AssemblyName>
  13. <DefaultLanguage>es-ES</DefaultLanguage>
  14. <FileAlignment>512</FileAlignment>
  15. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  16. <TargetFrameworkProfile>Profile78</TargetFrameworkProfile>
  17. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  18. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  19. <RestorePackages>true</RestorePackages>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>bin\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Compile Include="Model\Circuit\Circuit.cs" />
  40. <Compile Include="Model\Constructor\Constructor.cs" />
  41. <Compile Include="Model\Constructor\ConstructorTable.cs" />
  42. <Compile Include="Model\Driver\Driver.cs" />
  43. <Compile Include="Model\Driver\DriverTable.cs" />
  44. <Compile Include="Model\Location.cs" />
  45. <Compile Include="Model\MRData.cs" />
  46. <Compile Include="Model\QualifyingResult.cs" />
  47. <Compile Include="Model\Race\Race.cs" />
  48. <Compile Include="Model\Race\RaceRootObject.cs" />
  49. <Compile Include="Model\Race\RaceTable.cs" />
  50. <Compile Include="Model\Race\Result.cs" />
  51. <Compile Include="Model\Standing\ConstructorStanding.cs" />
  52. <Compile Include="Model\Standing\DriverStanding.cs" />
  53. <Compile Include="Model\Standing\StandingList.cs" />
  54. <Compile Include="Model\Standing\StandingMRData.cs" />
  55. <Compile Include="Model\Standing\StandingRootObject.cs" />
  56. <Compile Include="Model\Standing\StandingTable.cs" />
  57. <Compile Include="Model\Time\Time.cs" />
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. <Compile Include="Services\Base\HttpWebBase.cs" />
  60. <Compile Include="Services\Circuits\CircuitService.cs" />
  61. <Compile Include="Services\Circuits\ICircuitService.cs" />
  62. <Compile Include="Services\Constructors\ConstructorService.cs" />
  63. <Compile Include="Services\Constructors\IConstructorService.cs" />
  64. <Compile Include="Services\Driver\DriverService.cs" />
  65. <Compile Include="Services\Driver\IDriverService.cs" />
  66. <Compile Include="Services\Qualifying\IQualifyingService.cs" />
  67. <Compile Include="Services\Qualifying\QualifyingService.cs" />
  68. <Compile Include="Services\Race\IRaceService.cs" />
  69. <Compile Include="Services\Race\RaceService.cs" />
  70. <Compile Include="Services\Standings\IStandingService.cs" />
  71. <Compile Include="Services\Standings\StandingService.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <None Include="app.config" />
  75. <None Include="packages.config" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <Reference Include="Newtonsoft.Json">
  79. <HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\portable-net45+wp80+win8+wpa81+aspnetcore50\Newtonsoft.Json.dll</HintPath>
  80. </Reference>
  81. </ItemGroup>
  82. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  83. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  84. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  85. <PropertyGroup>
  86. <ErrorText>Este proyecto hace referencia a los paquetes NuGet que faltan en este equipo. Habilite la restauración del paquete NuGet para descargarlos. Para obtener más información, consulte http://go.microsoft.com/fwlink/?LinkID=322105. El archivo que falta es {0}.</ErrorText>
  87. </PropertyGroup>
  88. <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
  89. </Target>
  90. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  91. Other similar extension points exist, see Microsoft.Common.targets.
  92. <Target Name="BeforeBuild">
  93. </Target>
  94. <Target Name="AfterBuild">
  95. </Target>
  96. -->
  97. </Project>