commit 6bc888d02137661d295d66b7fba1b395f62959bf Author: harmacistant Date: Sun Jan 24 16:13:49 2021 -0600 Initial Commit 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.HelloWorldCS/.idea/.gitignore b/.idea/.idea.HelloWorldCS/.idea/.gitignore new file mode 100644 index 0000000..5279a4c --- /dev/null +++ b/.idea/.idea.HelloWorldCS/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/projectSettingsUpdater.xml +/contentModel.xml +/modules.xml +/.idea.HelloWorldCS.iml +# Datasource local storage ignored files +/../../../../../../../../:\Users\VY Canis Majoris\RiderProjects\HelloWorldCS\.idea\.idea.HelloWorldCS\.idea/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/.idea.HelloWorldCS/.idea/encodings.xml b/.idea/.idea.HelloWorldCS/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.HelloWorldCS/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.HelloWorldCS/.idea/indexLayout.xml b/.idea/.idea.HelloWorldCS/.idea/indexLayout.xml new file mode 100644 index 0000000..27ba142 --- /dev/null +++ b/.idea/.idea.HelloWorldCS/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.HelloWorldCS/.idea/vcs.xml b/.idea/.idea.HelloWorldCS/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.HelloWorldCS/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/HelloWorldCS.sln b/HelloWorldCS.sln new file mode 100644 index 0000000..fcc1775 --- /dev/null +++ b/HelloWorldCS.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorldCS", "HelloWorldCS\HelloWorldCS.csproj", "{36E31EAA-736D-450C-81EC-1483FE4F4DB7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {36E31EAA-736D-450C-81EC-1483FE4F4DB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {36E31EAA-736D-450C-81EC-1483FE4F4DB7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {36E31EAA-736D-450C-81EC-1483FE4F4DB7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {36E31EAA-736D-450C-81EC-1483FE4F4DB7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/HelloWorldCS/HelloWorldCS.csproj b/HelloWorldCS/HelloWorldCS.csproj new file mode 100644 index 0000000..51b7f6c --- /dev/null +++ b/HelloWorldCS/HelloWorldCS.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp2.1 + + + diff --git a/HelloWorldCS/Program.cs b/HelloWorldCS/Program.cs new file mode 100644 index 0000000..82d1fff --- /dev/null +++ b/HelloWorldCS/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace HelloWorldCS +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file