Skip to content

Instantly share code, notes, and snippets.

@mattn
Created October 28, 2020 15:30
Show Gist options
  • Save mattn/b88b629b8d134dcc5a7c4fd9cca6ccce to your computer and use it in GitHub Desktop.
Save mattn/b88b629b8d134dcc5a7c4fd9cca6ccce to your computer and use it in GitHub Desktop.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>
using System;
namespace foo
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment