From d106831879f7f7a8a610de55b8190b02fed9578e Mon Sep 17 00:00:00 2001 From: hzhang Date: Sun, 9 Mar 2025 12:09:44 +0000 Subject: [PATCH] init --- .gitignore | 5 +++++ Alchegos.Core.csproj | 9 +++++++++ Alchegos.Core.sln | 16 ++++++++++++++++ Class1.cs | 5 +++++ 4 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 Alchegos.Core.csproj create mode 100644 Alchegos.Core.sln create mode 100644 Class1.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/Alchegos.Core.csproj b/Alchegos.Core.csproj new file mode 100644 index 0000000..17b910f --- /dev/null +++ b/Alchegos.Core.csproj @@ -0,0 +1,9 @@ + + + + net9.0 + enable + enable + + + diff --git a/Alchegos.Core.sln b/Alchegos.Core.sln new file mode 100644 index 0000000..f36a237 --- /dev/null +++ b/Alchegos.Core.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Alchegos.Core", "Alchegos.Core.csproj", "{F3B6D336-1AE2-4DAC-945D-3FE40F695C24}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F3B6D336-1AE2-4DAC-945D-3FE40F695C24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F3B6D336-1AE2-4DAC-945D-3FE40F695C24}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F3B6D336-1AE2-4DAC-945D-3FE40F695C24}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F3B6D336-1AE2-4DAC-945D-3FE40F695C24}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/Class1.cs b/Class1.cs new file mode 100644 index 0000000..220e893 --- /dev/null +++ b/Class1.cs @@ -0,0 +1,5 @@ +namespace Alchegos.Core; + +public class Class1 +{ +} \ No newline at end of file