Skip to content

Instantly share code, notes, and snippets.

@jcansdale
Created October 9, 2019 08:41
Show Gist options
  • Save jcansdale/739fcebcf896829fb75975feafb85550 to your computer and use it in GitHub Desktop.
Save jcansdale/739fcebcf896829fb75975feafb85550 to your computer and use it in GitHub Desktop.
Hello, Gists!
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
</Project>
using System;
namespace HelloGists
{
class Program
{
static void Main()
{
Console.WriteLine("Hello, Gists!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment