From c2a1db64b79438c588c183c38ba2e657205b2a33 Mon Sep 17 00:00:00 2001 From: glax Date: Wed, 17 Jan 2024 03:24:48 +0100 Subject: [PATCH] Initial Commit --- .gitignore | 5 +++++ .idea/.idea.CShocker/.idea/.gitignore | 15 +++++++++++++++ .idea/.idea.CShocker/.idea/encodings.xml | 4 ++++ .idea/.idea.CShocker/.idea/indexLayout.xml | 8 ++++++++ .idea/.idea.CShocker/.idea/vcs.xml | 6 ++++++ CShocker.sln | 16 ++++++++++++++++ CShocker/CShocker.csproj | 9 +++++++++ CShocker/Class1.cs | 5 +++++ 8 files changed, 68 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.idea.CShocker/.idea/.gitignore create mode 100644 .idea/.idea.CShocker/.idea/encodings.xml create mode 100644 .idea/.idea.CShocker/.idea/indexLayout.xml create mode 100644 .idea/.idea.CShocker/.idea/vcs.xml create mode 100644 CShocker.sln create mode 100644 CShocker/CShocker.csproj create mode 100644 CShocker/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/.idea/.idea.CShocker/.idea/.gitignore b/.idea/.idea.CShocker/.idea/.gitignore new file mode 100644 index 0000000..d0ac66a --- /dev/null +++ b/.idea/.idea.CShocker/.idea/.gitignore @@ -0,0 +1,15 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/projectSettingsUpdater.xml +/contentModel.xml +/.idea.CShocker.iml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +bin/ +obj/ \ No newline at end of file diff --git a/.idea/.idea.CShocker/.idea/encodings.xml b/.idea/.idea.CShocker/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.CShocker/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.CShocker/.idea/indexLayout.xml b/.idea/.idea.CShocker/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.CShocker/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.CShocker/.idea/vcs.xml b/.idea/.idea.CShocker/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.CShocker/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/CShocker.sln b/CShocker.sln new file mode 100644 index 0000000..e1b0c37 --- /dev/null +++ b/CShocker.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CShocker", "CShocker\CShocker.csproj", "{244585F2-3AD8-4B3A-B6DA-3B0D3EFB745F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {244585F2-3AD8-4B3A-B6DA-3B0D3EFB745F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {244585F2-3AD8-4B3A-B6DA-3B0D3EFB745F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {244585F2-3AD8-4B3A-B6DA-3B0D3EFB745F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {244585F2-3AD8-4B3A-B6DA-3B0D3EFB745F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/CShocker/CShocker.csproj b/CShocker/CShocker.csproj new file mode 100644 index 0000000..6836c68 --- /dev/null +++ b/CShocker/CShocker.csproj @@ -0,0 +1,9 @@ + + + + net7.0 + enable + enable + + + diff --git a/CShocker/Class1.cs b/CShocker/Class1.cs new file mode 100644 index 0000000..94b75c8 --- /dev/null +++ b/CShocker/Class1.cs @@ -0,0 +1,5 @@ +namespace CShocker; + +public class Class1 +{ +} \ No newline at end of file