From 89eb74fa3cf097e3379a3643ccbd7110f6a207c2 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Sat, 20 Feb 2021 16:09:01 +1100 Subject: [PATCH] Create console project --- .gitignore | 3 ++ 84 Super Star Trek/csharp/Program.cs | 12 +++++++ .../csharp/SuperStarTrek.csproj | 8 +++++ 84 Super Star Trek/csharp/SuperStarTrek.sln | 34 +++++++++++++++++++ 4 files changed, 57 insertions(+) create mode 100644 84 Super Star Trek/csharp/Program.cs create mode 100644 84 Super Star Trek/csharp/SuperStarTrek.csproj create mode 100644 84 Super Star Trek/csharp/SuperStarTrek.sln diff --git a/.gitignore b/.gitignore index 53e00acd..42752d61 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,6 @@ /01 Acey Ducey/csharp/bin/Debug/netcoreapp3.1 /33 Dice/csharp/bin/Debug/net5.0 /basic-computer-games-dot-net/.vs/basic-computer-games-dot-net/v16 + +*/csharp/bin +*/csharp/obj diff --git a/84 Super Star Trek/csharp/Program.cs b/84 Super Star Trek/csharp/Program.cs new file mode 100644 index 00000000..d88fa19e --- /dev/null +++ b/84 Super Star Trek/csharp/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace SuperStarTrek +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/84 Super Star Trek/csharp/SuperStarTrek.csproj b/84 Super Star Trek/csharp/SuperStarTrek.csproj new file mode 100644 index 00000000..c73e0d16 --- /dev/null +++ b/84 Super Star Trek/csharp/SuperStarTrek.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + + diff --git a/84 Super Star Trek/csharp/SuperStarTrek.sln b/84 Super Star Trek/csharp/SuperStarTrek.sln new file mode 100644 index 00000000..7a17477a --- /dev/null +++ b/84 Super Star Trek/csharp/SuperStarTrek.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26124.0 +MinimumVisualStudioVersion = 15.0.26124.0 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuperStarTrek", "SuperStarTrek.csproj", "{ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Debug|x64.ActiveCfg = Debug|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Debug|x64.Build.0 = Debug|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Debug|x86.ActiveCfg = Debug|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Debug|x86.Build.0 = Debug|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Release|Any CPU.Build.0 = Release|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Release|x64.ActiveCfg = Release|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Release|x64.Build.0 = Release|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Release|x86.ActiveCfg = Release|Any CPU + {ACB0A7F5-A4DC-4A2F-8D3D-104E83A0417F}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal