From 47bf6729a420d8d17ee37f6d7f8a00e3466d431d Mon Sep 17 00:00:00 2001 From: ming <1195669834@qq.com> Date: Fri, 16 Dec 2022 15:42:16 +0800 Subject: [PATCH] Create csharp project to replace single file. --- codes/csharp/.gitignore | 5 +++++ codes/csharp/hello-algo.csproj | 18 ++++++++++++++++++ codes/csharp/hello-algo.sln | 25 +++++++++++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 codes/csharp/.gitignore create mode 100644 codes/csharp/hello-algo.csproj create mode 100644 codes/csharp/hello-algo.sln diff --git a/codes/csharp/.gitignore b/codes/csharp/.gitignore new file mode 100644 index 000000000..a4b66a94a --- /dev/null +++ b/codes/csharp/.gitignore @@ -0,0 +1,5 @@ +.idea/ +.vs/ +obj/ +.Debug +bin/ diff --git a/codes/csharp/hello-algo.csproj b/codes/csharp/hello-algo.csproj new file mode 100644 index 000000000..2ef4da851 --- /dev/null +++ b/codes/csharp/hello-algo.csproj @@ -0,0 +1,18 @@ + + + + Exe + net6.0 + hello_algo + enable + enable + + + + + + + + + + diff --git a/codes/csharp/hello-algo.sln b/codes/csharp/hello-algo.sln new file mode 100644 index 000000000..df62e5480 --- /dev/null +++ b/codes/csharp/hello-algo.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.1.32421.90 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "hello-algo", "hello-algo.csproj", "{C88820BB-BD9C-4993-9FAE-D3C09FEF4E4B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C88820BB-BD9C-4993-9FAE-D3C09FEF4E4B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C88820BB-BD9C-4993-9FAE-D3C09FEF4E4B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C88820BB-BD9C-4993-9FAE-D3C09FEF4E4B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C88820BB-BD9C-4993-9FAE-D3C09FEF4E4B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {93C0511D-8D01-43BB-BD42-8E053E46FD67} + EndGlobalSection +EndGlobal