Skip to content

Commit

Permalink
stubbed out cli project
Browse files Browse the repository at this point in the history
  • Loading branch information
zuccaro committed Oct 12, 2019
1 parent fb6f7eb commit e22bfbe
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bin/
obj/
.DS_Store
13 changes: 13 additions & 0 deletions src/hex/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using System;

namespace ZTC.Hexaminer
{
class Program
{
static void Main(string[] args)
{
var argstr = string.Join(" ",args);
Console.WriteLine($"hex {argstr}");
}
}
}
12 changes: 12 additions & 0 deletions src/hex/hex.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<Version>0.0.0.0</Version>
<FileVersion>0.0.0.0</FileVersion>
<InformationalVersion>0.0.0.0.myversion</InformationalVersion>
</PropertyGroup>
</Project>

0 comments on commit e22bfbe

Please sign in to comment.