From f58e799ee97544a50491650cd726e3265284171e Mon Sep 17 00:00:00 2001 From: shept Date: Tue, 11 Mar 2025 21:41:34 +0500 Subject: [PATCH] initialised solution --- .gitignore | 6 ++++++ surveylib.sln | 16 ++++++++++++++++ surveylib/Class1.cs | 5 +++++ surveylib/surveylib.csproj | 9 +++++++++ 4 files changed, 36 insertions(+) create mode 100644 .gitignore create mode 100644 surveylib.sln create mode 100644 surveylib/Class1.cs create mode 100644 surveylib/surveylib.csproj diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f400df3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ +.idea/ \ No newline at end of file diff --git a/surveylib.sln b/surveylib.sln new file mode 100644 index 0000000..1251f34 --- /dev/null +++ b/surveylib.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "surveylib", "surveylib\surveylib.csproj", "{89972F62-9976-41F2-8259-428F4F196AFF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {89972F62-9976-41F2-8259-428F4F196AFF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {89972F62-9976-41F2-8259-428F4F196AFF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {89972F62-9976-41F2-8259-428F4F196AFF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {89972F62-9976-41F2-8259-428F4F196AFF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/surveylib/Class1.cs b/surveylib/Class1.cs new file mode 100644 index 0000000..914b37b --- /dev/null +++ b/surveylib/Class1.cs @@ -0,0 +1,5 @@ +namespace surveylib; + +public class Class1 +{ +} \ No newline at end of file diff --git a/surveylib/surveylib.csproj b/surveylib/surveylib.csproj new file mode 100644 index 0000000..3a63532 --- /dev/null +++ b/surveylib/surveylib.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + +