Merge branch 'PackagedCommands' of https://github.com/eerhardt/cli into eerhardt-PackagedCommands

This commit is contained in:
Piotr Puszkiewicz 2016-02-16 21:02:56 -08:00
commit d9b54cecac
12 changed files with 139 additions and 1 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

View file

@ -0,0 +1,17 @@
{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"testRunner": "must-be-specified-to-generate-deps",
"dependencies": {
"NETStandard.Library": "1.0.0-rc2-23811",
"dotnet-hello": {"version": "1.0.0", "target": "package"}
},
"frameworks": {
"dnxcore50": { }
}
}