| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{87994CF7-24C7-47FC-9F41-28F63966F60E}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>FormulaOneApp.ErgastAPI</RootNamespace>
- <AssemblyName>FormulaOneApp.ErgastAPI</AssemblyName>
- <DefaultLanguage>es-ES</DefaultLanguage>
- <FileAlignment>512</FileAlignment>
- <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
- <RestorePackages>true</RestorePackages>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="Model\Circuit\Circuit.cs" />
- <Compile Include="Model\Circuit\CircuitTable.cs" />
- <Compile Include="Model\Constructor\Constructor.cs" />
- <Compile Include="Model\Constructor\ConstructorTable.cs" />
- <Compile Include="Model\Driver\Driver.cs" />
- <Compile Include="Model\Driver\DriverTable.cs" />
- <Compile Include="Model\Location.cs" />
- <Compile Include="Model\MRData.cs" />
- <Compile Include="Model\QualifyingResult.cs" />
- <Compile Include="Model\Race\Race.cs" />
- <Compile Include="Model\Race\RaceRootObject.cs" />
- <Compile Include="Model\Race\RaceTable.cs" />
- <Compile Include="Model\Race\Result.cs" />
- <Compile Include="Model\Standing\ConstructorStanding.cs" />
- <Compile Include="Model\Standing\DriverStanding.cs" />
- <Compile Include="Model\Standing\StandingList.cs" />
- <Compile Include="Model\Standing\StandingMRData.cs" />
- <Compile Include="Model\Standing\StandingRootObject.cs" />
- <Compile Include="Model\Standing\StandingTable.cs" />
- <Compile Include="Model\Time\Time.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="Services\Base\HttpWebBase.cs" />
- <Compile Include="Services\Circuits\CircuitService.cs" />
- <Compile Include="Services\Circuits\ICircuitService.cs" />
- <Compile Include="Services\Constructors\ConstructorService.cs" />
- <Compile Include="Services\Constructors\IConstructorService.cs" />
- <Compile Include="Services\Driver\DriverService.cs" />
- <Compile Include="Services\Driver\IDriverService.cs" />
- <Compile Include="Services\Qualifying\IQualifyingService.cs" />
- <Compile Include="Services\Qualifying\QualifyingService.cs" />
- <Compile Include="Services\Race\IRaceService.cs" />
- <Compile Include="Services\Race\RaceService.cs" />
- <Compile Include="Services\Standings\IStandingService.cs" />
- <Compile Include="Services\Standings\StandingService.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Include="app.config" />
- <None Include="packages.config" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Newtonsoft.Json">
- <HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\portable-net45+wp80+win8+wpa81+aspnetcore50\Newtonsoft.Json.dll</HintPath>
- </Reference>
- </ItemGroup>
- <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
- <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
- <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
- <PropertyGroup>
- <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>
- </PropertyGroup>
- <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
- </Target>
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|