Skip to content

Commit

Permalink
Crawl code for box scores used for 2011 March Madness Predictive Anal…
Browse files Browse the repository at this point in the history
…ytics Challenge.
  • Loading branch information
leezen committed Apr 10, 2011
0 parents commit bbe9be0
Show file tree
Hide file tree
Showing 5 changed files with 609 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.suo
bin/
obj/
*.csproj.user
23 changes: 23 additions & 0 deletions CrawlYahooBoxscores.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CrawlYahooBoxscores", "CrawlYahooBoxscores\CrawlYahooBoxscores.csproj", "{9A8332B7-7D21-4AA4-B6A8-C37901AB8FC6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Crawl|Any CPU = Crawl|Any CPU
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9A8332B7-7D21-4AA4-B6A8-C37901AB8FC6}.Crawl|Any CPU.ActiveCfg = Crawl|Any CPU
{9A8332B7-7D21-4AA4-B6A8-C37901AB8FC6}.Crawl|Any CPU.Build.0 = Crawl|Any CPU
{9A8332B7-7D21-4AA4-B6A8-C37901AB8FC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9A8332B7-7D21-4AA4-B6A8-C37901AB8FC6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9A8332B7-7D21-4AA4-B6A8-C37901AB8FC6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A8332B7-7D21-4AA4-B6A8-C37901AB8FC6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
72 changes: 72 additions & 0 deletions CrawlYahooBoxscores/CrawlYahooBoxscores.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Crawl|AnyCPU' ">
<OutputPath>bin\Crawl\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{9A8332B7-7D21-4AA4-B6A8-C37901AB8FC6}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CrawlYahooBoxscores</RootNamespace>
<AssemblyName>CrawlYahooBoxscores</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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>
<Reference Include="HtmlAgilityPack, Version=1.4.0.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\Bin\HtmlAgilityPack\HtmlAgilityPack.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\YahooTeamCodes.txt">
<Link>YahooTeamCodes.txt</Link>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- 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>
Loading

0 comments on commit bbe9be0

Please sign in to comment.