From d9de20d1f9c42a293d6e2dc8f44acecd8abeddc9 Mon Sep 17 00:00:00 2001 From: Erik Date: Fri, 2 Mar 2012 12:21:42 -0500 Subject: [PATCH] Initial commit of CLI app. --- .gitignore | 49 +++++++++++++++++++ DataScraperCLI/DataScraperCLI.csproj | 57 +++++++++++++++++++++++ DataScraperCLI/Program.cs | 11 +++++ DataScraperCLI/Properties/AssemblyInfo.cs | 36 ++++++++++++++ ECESeniorDesign.sln | 20 ++++++++ 5 files changed, 173 insertions(+) create mode 100644 .gitignore create mode 100644 DataScraperCLI/DataScraperCLI.csproj create mode 100644 DataScraperCLI/Program.cs create mode 100644 DataScraperCLI/Properties/AssemblyInfo.cs create mode 100644 ECESeniorDesign.sln diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8716536 --- /dev/null +++ b/.gitignore @@ -0,0 +1,49 @@ +#OS junk files +[Tt]humbs.db +*.DS_Store + +#Visual Studio files +*.[Oo]bj +*.user +*.aps +*.pch +*.vspscc +*.vssscc +*_i.c +*_p.c +*.ncb +*.suo +*.tlb +*.tlh +*.bak +*.[Cc]ache +*.ilk +*.log +*.lib +*.sbr +*.sdf +*.opensdf +*.unsuccessfulbuild +ipch/ +obj/ +[Bb]in +[Dd]ebug*/ +[Rr]elease*/ +Ankh.NoLoad + +#Tooling +_ReSharper*/ +*.resharper +[Tt]est[Rr]esult* + +#Project files +[Bb]uild/ + +#Subversion files +.svn + +# Office Temp Files +~$* + +#NuGet +packages/ \ No newline at end of file diff --git a/DataScraperCLI/DataScraperCLI.csproj b/DataScraperCLI/DataScraperCLI.csproj new file mode 100644 index 0000000..5123792 --- /dev/null +++ b/DataScraperCLI/DataScraperCLI.csproj @@ -0,0 +1,57 @@ + + + + Debug + x86 + 8.0.30703 + 2.0 + {0ACA125D-6725-4A0B-8C61-05EE786943C5} + Exe + Properties + DataScraperCLI + DataScraperCLI + v4.0 + Client + 512 + + + x86 + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + x86 + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/DataScraperCLI/Program.cs b/DataScraperCLI/Program.cs new file mode 100644 index 0000000..e2041a7 --- /dev/null +++ b/DataScraperCLI/Program.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace DataScraperCLI { + class Program { + static void Main(string[] args) { + } + } +} diff --git a/DataScraperCLI/Properties/AssemblyInfo.cs b/DataScraperCLI/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..c74a776 --- /dev/null +++ b/DataScraperCLI/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("DataScraperCLI")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("School of Business")] +[assembly: AssemblyProduct("DataScraperCLI")] +[assembly: AssemblyCopyright("Copyright © School of Business 2012")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("9a5220fc-5069-4a3a-8627-ecc377b681b8")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ECESeniorDesign.sln b/ECESeniorDesign.sln new file mode 100644 index 0000000..48f0a11 --- /dev/null +++ b/ECESeniorDesign.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataScraperCLI", "DataScraperCLI\DataScraperCLI.csproj", "{0ACA125D-6725-4A0B-8C61-05EE786943C5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0ACA125D-6725-4A0B-8C61-05EE786943C5}.Debug|x86.ActiveCfg = Debug|x86 + {0ACA125D-6725-4A0B-8C61-05EE786943C5}.Debug|x86.Build.0 = Debug|x86 + {0ACA125D-6725-4A0B-8C61-05EE786943C5}.Release|x86.ActiveCfg = Release|x86 + {0ACA125D-6725-4A0B-8C61-05EE786943C5}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal