Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Created November 15, 2021 05:06
Show Gist options
  • Save gistlyn/6dcaf3fe38865dbeafdb738f29c127b9 to your computer and use it in GitHub Desktop.
Save gistlyn/6dcaf3fe38865dbeafdb738f29c127b9 to your computer and use it in GitHub Desktop.
net6-console
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Exe</OutputType>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ServiceStack.Common" Version="5.*" />
</ItemGroup>
</Project>
Console.WriteLine("Hello C# on .NET 6!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment