From a1fb04c75a9ecf14d2cd64b55404fc7a88ce5ae9 Mon Sep 17 00:00:00 2001 From: MallocNull Date: Mon, 16 Jun 2014 16:25:59 -0500 Subject: [PATCH] establish struct jewdongle --- .gitignore | 7 +++- bot/bot.sln | 20 +++++++++++ bot/bot/App.config | 6 ++++ bot/bot/Main.cs | 15 ++++++++ bot/bot/Properties/AssemblyInfo.cs | 36 +++++++++++++++++++ bot/bot/bot.csproj | 58 ++++++++++++++++++++++++++++++ sql/structure.sql | 1 + www/conn_generic.php | 5 +++ 8 files changed, 147 insertions(+), 1 deletion(-) create mode 100644 bot/bot.sln create mode 100644 bot/bot/App.config create mode 100644 bot/bot/Main.cs create mode 100644 bot/bot/Properties/AssemblyInfo.cs create mode 100644 bot/bot/bot.csproj create mode 100644 sql/structure.sql create mode 100644 www/conn_generic.php diff --git a/.gitignore b/.gitignore index b9d6bd9..e662e97 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,9 @@ +################# +## Temporary Exclusions +################# +conn.php +.idea/ + ################# ## Eclipse ################# @@ -140,7 +146,6 @@ csx AppPackages/ # Others -sql/ *.Cache ClientBin/ [Ss]tyle[Cc]op.* diff --git a/bot/bot.sln b/bot/bot.sln new file mode 100644 index 0000000..1851e8c --- /dev/null +++ b/bot/bot.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "bot", "bot\bot.csproj", "{1E318685-BF0A-4508-AE47-76C7442994D7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1E318685-BF0A-4508-AE47-76C7442994D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1E318685-BF0A-4508-AE47-76C7442994D7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1E318685-BF0A-4508-AE47-76C7442994D7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1E318685-BF0A-4508-AE47-76C7442994D7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/bot/bot/App.config b/bot/bot/App.config new file mode 100644 index 0000000..8e15646 --- /dev/null +++ b/bot/bot/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/bot/bot/Main.cs b/bot/bot/Main.cs new file mode 100644 index 0000000..574a70a --- /dev/null +++ b/bot/bot/Main.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace bot +{ + class Main + { + static void Main(string[] args) + { + } + } +} diff --git a/bot/bot/Properties/AssemblyInfo.cs b/bot/bot/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..377e334 --- /dev/null +++ b/bot/bot/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("bot")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Hewlett-Packard")] +[assembly: AssemblyProduct("bot")] +[assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2014")] +[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("6611f283-79ed-4cea-8592-42cf8f5aab4e")] + +// 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/bot/bot/bot.csproj b/bot/bot/bot.csproj new file mode 100644 index 0000000..2b027db --- /dev/null +++ b/bot/bot/bot.csproj @@ -0,0 +1,58 @@ + + + + + Debug + AnyCPU + {1E318685-BF0A-4508-AE47-76C7442994D7} + Exe + Properties + bot + bot + v4.5 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sql/structure.sql b/sql/structure.sql new file mode 100644 index 0000000..c490f3b --- /dev/null +++ b/sql/structure.sql @@ -0,0 +1 @@ +TODO: EXPORT SQL \ No newline at end of file diff --git a/www/conn_generic.php b/www/conn_generic.php new file mode 100644 index 0000000..bd6bb69 --- /dev/null +++ b/www/conn_generic.php @@ -0,0 +1,5 @@ + \ No newline at end of file