Adding a test that verifies that running dotnet migrate solution.sln will only migrate the projects in the solution file.

This commit is contained in:
Livar Cunha 2017-01-19 13:59:31 -08:00
parent 6568113e34
commit dbf4b5de77
3 changed files with 56 additions and 0 deletions

View file

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

View file

@ -0,0 +1,15 @@
{
"frameworks": {
"netcoreapp1.0": {
"imports": [
"portable-net451+win8"
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0",
"type": "platform"
}
}
}
}
}