From a3c4d124685353f876313798deba436d7052073e Mon Sep 17 00:00:00 2001 From: hzhang Date: Wed, 5 Feb 2025 11:50:04 +0000 Subject: [PATCH] init --- .gitignore | 5 +++++ Hangman.SDK.csproj | 17 +++++++++++++++++ Hangman.SDK.sln | 22 ++++++++++++++++++++++ src/GlobalRegistry.cs | 6 ++++++ src/IRegistry.cs | 6 ++++++ 5 files changed, 56 insertions(+) create mode 100644 .gitignore create mode 100644 Hangman.SDK.csproj create mode 100644 Hangman.SDK.sln create mode 100644 src/GlobalRegistry.cs create mode 100644 src/IRegistry.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/Hangman.SDK.csproj b/Hangman.SDK.csproj new file mode 100644 index 0000000..ed2d163 --- /dev/null +++ b/Hangman.SDK.csproj @@ -0,0 +1,17 @@ + + + + net9.0 + enable + disable + false + false + + + + + + + + + diff --git a/Hangman.SDK.sln b/Hangman.SDK.sln new file mode 100644 index 0000000..bc527ec --- /dev/null +++ b/Hangman.SDK.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hangman.SDK", "Hangman.SDK.csproj", "{5BA39DF8-7098-4348-A670-B3F34269F48F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hangman.SDK.Generators", "..\Hangman.SDK.Generators\Hangman.SDK.Generators.csproj", "{41B784D2-841C-44D6-90F3-9219BC264B19}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5BA39DF8-7098-4348-A670-B3F34269F48F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5BA39DF8-7098-4348-A670-B3F34269F48F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5BA39DF8-7098-4348-A670-B3F34269F48F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5BA39DF8-7098-4348-A670-B3F34269F48F}.Release|Any CPU.Build.0 = Release|Any CPU + {41B784D2-841C-44D6-90F3-9219BC264B19}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {41B784D2-841C-44D6-90F3-9219BC264B19}.Debug|Any CPU.Build.0 = Debug|Any CPU + {41B784D2-841C-44D6-90F3-9219BC264B19}.Release|Any CPU.ActiveCfg = Release|Any CPU + {41B784D2-841C-44D6-90F3-9219BC264B19}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/src/GlobalRegistry.cs b/src/GlobalRegistry.cs new file mode 100644 index 0000000..841817d --- /dev/null +++ b/src/GlobalRegistry.cs @@ -0,0 +1,6 @@ +namespace Hangman.SDK; + +public partial class GlobalRegistry +{ + +} \ No newline at end of file diff --git a/src/IRegistry.cs b/src/IRegistry.cs new file mode 100644 index 0000000..8f74831 --- /dev/null +++ b/src/IRegistry.cs @@ -0,0 +1,6 @@ +namespace Hangman.SDK; + +public interface IRegistry +{ + +} \ No newline at end of file