commit 9dfc55d1e9f459e10c0c56522dd0687e46463ccd Author: Sean Stoves Date: Tue Jun 2 19:51:36 2020 -0400 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3fe62f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +/ChaosBot/bin/ +/ChaosBot/obj/ diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/.idea/.idea.ChaosBot/.idea/.gitignore b/.idea/.idea.ChaosBot/.idea/.gitignore new file mode 100644 index 0000000..0110b99 --- /dev/null +++ b/.idea/.idea.ChaosBot/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +/workspace.xml \ No newline at end of file diff --git a/.idea/.idea.ChaosBot/.idea/contentModel.xml b/.idea/.idea.ChaosBot/.idea/contentModel.xml new file mode 100644 index 0000000..ebea5c4 --- /dev/null +++ b/.idea/.idea.ChaosBot/.idea/contentModel.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.ChaosBot/.idea/encodings.xml b/.idea/.idea.ChaosBot/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.ChaosBot/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.ChaosBot/.idea/indexLayout.xml b/.idea/.idea.ChaosBot/.idea/indexLayout.xml new file mode 100644 index 0000000..27ba142 --- /dev/null +++ b/.idea/.idea.ChaosBot/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.ChaosBot/.idea/modules.xml b/.idea/.idea.ChaosBot/.idea/modules.xml new file mode 100644 index 0000000..eac0baf --- /dev/null +++ b/.idea/.idea.ChaosBot/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.ChaosBot/.idea/projectSettingsUpdater.xml b/.idea/.idea.ChaosBot/.idea/projectSettingsUpdater.xml new file mode 100644 index 0000000..7515e76 --- /dev/null +++ b/.idea/.idea.ChaosBot/.idea/projectSettingsUpdater.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/.idea.ChaosBot/.idea/vcs.xml b/.idea/.idea.ChaosBot/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.ChaosBot/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/.idea.ChaosBot/riderModule.iml b/.idea/.idea.ChaosBot/riderModule.iml new file mode 100644 index 0000000..1a4e0d9 --- /dev/null +++ b/.idea/.idea.ChaosBot/riderModule.iml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/ChaosBot.sln b/ChaosBot.sln new file mode 100644 index 0000000..f35eeb4 --- /dev/null +++ b/ChaosBot.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChaosBot", "ChaosBot\ChaosBot.csproj", "{0222079F-84D7-4EEF-A2A6-D5AD67546D61}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0222079F-84D7-4EEF-A2A6-D5AD67546D61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0222079F-84D7-4EEF-A2A6-D5AD67546D61}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0222079F-84D7-4EEF-A2A6-D5AD67546D61}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0222079F-84D7-4EEF-A2A6-D5AD67546D61}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/ChaosBot/ChaosBot.csproj b/ChaosBot/ChaosBot.csproj new file mode 100644 index 0000000..ac4c040 --- /dev/null +++ b/ChaosBot/ChaosBot.csproj @@ -0,0 +1,13 @@ + + + + Exe + netcoreapp3.0 + + + + + + + + diff --git a/ChaosBot/Logging.cs b/ChaosBot/Logging.cs new file mode 100644 index 0000000..ba2baed --- /dev/null +++ b/ChaosBot/Logging.cs @@ -0,0 +1,7 @@ +namespace ChaosBot +{ + public class Logging + { + + } +} \ No newline at end of file diff --git a/ChaosBot/Program.cs b/ChaosBot/Program.cs new file mode 100644 index 0000000..d71fe68 --- /dev/null +++ b/ChaosBot/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace ChaosBot +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file