19b4bad315
* Add/remove projects also updates build configurations * Fix the algorithm for adding/removing build configurations * Address PR comments
12 lines
171 B
C#
12 lines
171 B
C#
using System;
|
|
|
|
namespace Lib
|
|
{
|
|
public class Library
|
|
{
|
|
public static string GetMessage()
|
|
{
|
|
return "Message from Lib";
|
|
}
|
|
}
|
|
}
|