Skip to content

Commit

Permalink
basic sample
Browse files Browse the repository at this point in the history
  • Loading branch information
garywoodfine committed Jul 31, 2018
1 parent 3eec7fa commit d5aa6f3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/FizzBuzz.csproj
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>

</Project>
12 changes: 12 additions & 0 deletions src/Program.cs
@@ -0,0 +1,12 @@
using System;

namespace FizzBuzz
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

0 comments on commit d5aa6f3

Please sign in to comment.