Migration: do not add a csproj to the solution if it already exists

This commit is contained in:
Justin Goshi 2017-01-19 11:23:01 -08:00
parent 908b6515cb
commit 5bbac55736
10 changed files with 177 additions and 6 deletions

View file

@ -0,0 +1,16 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
namespace TestApp
{
public class Program
{
public static int Main(string[] args)
{
Console.WriteLine(TestLibrary.Helper.GetMessage());
return 0;
}
}
}