Shorten test asset names

This commit is contained in:
Piotr Puszkiewicz 2016-08-18 10:17:58 -07:00
parent c3971fc100
commit 3194ec1c3a
17 changed files with 14 additions and 14 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("App with a dependency on a tool whose package name is different from the dll name!");
}
}
}

View file

@ -0,0 +1,21 @@
{
"version": "1.0.0-*",
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0",
"type": "platform"
}
},
"frameworks": {
"netcoreapp1.0": {}
},
"tools": {
"ToolWithOutputName": {
"version": "1.0.0",
"target": "package"
}
}
}