From 523da0be75d79646d665e26e5161828c90c95829 Mon Sep 17 00:00:00 2001 From: Christopher Felegy Date: Sun, 5 Jan 2020 18:11:14 -0500 Subject: [PATCH] meta: add project structure --- Discord.Net.sln | 39 ++++++++++++++++++++++++++++++++++++++ doc/.gitkeep | 0 sample/.gitkeep | 0 src/Discord.Net/Class1.cs | 8 ++++++++ src/Discord.Net/Discord.Net.csproj | 7 +++++++ test/.gitkeep | 0 6 files changed, 54 insertions(+) create mode 100644 Discord.Net.sln create mode 100644 doc/.gitkeep create mode 100644 sample/.gitkeep create mode 100644 src/Discord.Net/Class1.cs create mode 100644 src/Discord.Net/Discord.Net.csproj create mode 100644 test/.gitkeep diff --git a/Discord.Net.sln b/Discord.Net.sln new file mode 100644 index 000000000..6b31e4ec4 --- /dev/null +++ b/Discord.Net.sln @@ -0,0 +1,39 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26124.0 +MinimumVisualStudioVersion = 15.0.26124.0 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{5DAC796B-0B77-4F84-B790-83DB78C6DFFE}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Discord.Net", "src\Discord.Net\Discord.Net.csproj", "{3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Debug|x64.ActiveCfg = Debug|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Debug|x64.Build.0 = Debug|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Debug|x86.ActiveCfg = Debug|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Debug|x86.Build.0 = Debug|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Release|Any CPU.Build.0 = Release|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Release|x64.ActiveCfg = Release|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Release|x64.Build.0 = Release|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Release|x86.ActiveCfg = Release|Any CPU + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {3194F5DC-C0AF-4459-AAA3-91CB8FB8C370} = {5DAC796B-0B77-4F84-B790-83DB78C6DFFE} + EndGlobalSection +EndGlobal diff --git a/doc/.gitkeep b/doc/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/sample/.gitkeep b/sample/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/src/Discord.Net/Class1.cs b/src/Discord.Net/Class1.cs new file mode 100644 index 000000000..9a50619c7 --- /dev/null +++ b/src/Discord.Net/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace Discord.Net +{ + public class Class1 + { + } +} diff --git a/src/Discord.Net/Discord.Net.csproj b/src/Discord.Net/Discord.Net.csproj new file mode 100644 index 000000000..d4c395e8c --- /dev/null +++ b/src/Discord.Net/Discord.Net.csproj @@ -0,0 +1,7 @@ + + + + netstandard2.1 + + + diff --git a/test/.gitkeep b/test/.gitkeep new file mode 100644 index 000000000..e69de29bb