Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Last active August 18, 2019 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guitarrapc/9d1c96e0b5776204394dec8cd9d47ac8 to your computer and use it in GitHub Desktop.
Save guitarrapc/9d1c96e0b5776204394dec8cd9d47ac8 to your computer and use it in GitHub Desktop.
simple single executable
using System;
namespace SimpleSingleExecutable
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment