When determining the P2P dependencies, only use dependencies of type project. This prevents us from migrating a package dependency as a project dependency because of a project with the same name being present.

This commit is contained in:
Livar Cunha 2016-10-24 16:25:57 -07:00
parent f68670e13c
commit 175eaeb5c1
8 changed files with 113 additions and 2 deletions

View file

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