dotnet-installer/TestAssets/TestProjects/TestAppWithEmptySln/Lib/Library.cs
Justin Goshi 19b4bad315 Add/remove projects also updates build configurations (#5134)
* Add/remove projects also updates build configurations

* Fix the algorithm for adding/removing build configurations

* Address PR comments
2017-01-03 07:18:45 -10:00

12 lines
171 B
C#

using System;
namespace Lib
{
public class Library
{
public static string GetMessage()
{
return "Message from Lib";
}
}
}