From 11c45562ca1874957f1bf80f58bd35000ee20200 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Wed, 24 Jan 2018 23:41:17 -0500 Subject: [PATCH] Add project files. --- SharpRepl.sln | 25 +++++++++++++++++++++++++ SharpRepl/Program.cs | 12 ++++++++++++ SharpRepl/SharpRepl.csproj | 8 ++++++++ 3 files changed, 45 insertions(+) create mode 100644 SharpRepl.sln create mode 100644 SharpRepl/Program.cs create mode 100644 SharpRepl/SharpRepl.csproj diff --git a/SharpRepl.sln b/SharpRepl.sln new file mode 100644 index 0000000..f9bc048 --- /dev/null +++ b/SharpRepl.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27130.2010 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRepl", "SharpRepl\SharpRepl.csproj", "{F240A133-A353-4FF2-9E5F-18CDC650085A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F240A133-A353-4FF2-9E5F-18CDC650085A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F240A133-A353-4FF2-9E5F-18CDC650085A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F240A133-A353-4FF2-9E5F-18CDC650085A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F240A133-A353-4FF2-9E5F-18CDC650085A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {352DE9D1-82B7-4458-8EEA-294AB3C2462D} + EndGlobalSection +EndGlobal diff --git a/SharpRepl/Program.cs b/SharpRepl/Program.cs new file mode 100644 index 0000000..3b43637 --- /dev/null +++ b/SharpRepl/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace SharpRepl +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/SharpRepl/SharpRepl.csproj b/SharpRepl/SharpRepl.csproj new file mode 100644 index 0000000..ce1697a --- /dev/null +++ b/SharpRepl/SharpRepl.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp2.0 + + +