Merge branch 'PackagedCommands' of https://github.com/eerhardt/cli into eerhardt-PackagedCommands
This commit is contained in:
commit
d9b54cecac
12 changed files with 139 additions and 1 deletions
12
TestAssets/TestProjects/AppWithToolDependency/Program.cs
Normal file
12
TestAssets/TestProjects/AppWithToolDependency/Program.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
|
||||
namespace ConsoleApplication
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello World!");
|
||||
}
|
||||
}
|
||||
}
|
18
TestAssets/TestProjects/AppWithToolDependency/project.json
Normal file
18
TestAssets/TestProjects/AppWithToolDependency/project.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"compilationOptions": {
|
||||
"emitEntryPoint": true
|
||||
},
|
||||
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.0.0-rc2-23811"
|
||||
},
|
||||
|
||||
"frameworks": {
|
||||
"dnxcore50": { }
|
||||
},
|
||||
|
||||
"tools": {
|
||||
"dotnet-hello": { "version": "1.0.0", "target": "package" }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue